/* ════════════════════════════════════════════════════════
   PEPART INTERIORS — COMING SOON
   Design System & Styles
   ════════════════════════════════════════════════════════ */

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

:root {
  /* Palette */
  --color-bg: #0f0d0a;
  --color-surface: rgba(26, 22, 18, 0.65);
  --color-surface-solid: #1a1612;
  --color-gold: #c9a96e;
  --color-gold-light: #e4cfa0;
  --color-gold-dim: rgba(201, 169, 110, 0.25);
  --color-text: #f5f0ea;
  --color-text-muted: rgba(245, 240, 234, 0.55);
  --color-white: #ffffff;
  --color-overlay-top: rgba(15, 13, 10, 0.35);
  --color-overlay-bottom: rgba(15, 13, 10, 0.92);

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Manrope', 'Helvetica Neue', sans-serif;

  /* Spacing */
  --gap: clamp(1rem, 3vw, 2.5rem);

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-slow: 1.2s;
  --duration-med: 0.6s;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ── Background Layer ──────────────────────────────── */
.bg-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.08);
  filter: brightness(0.55) saturate(0.85);
  transition: transform 18s var(--ease-out-expo), filter 3s ease;
  will-change: transform;
}

.bg-image.loaded {
  transform: scale(1);
}

.bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      var(--color-overlay-top) 0%,
      rgba(15, 13, 10, 0.15) 35%,
      rgba(15, 13, 10, 0.55) 65%,
      var(--color-overlay-bottom) 100%);
}

/* Dreamy bottom fog effect */
.bg-fog {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45%;
  background: linear-gradient(to top,
      var(--color-bg) 0%,
      rgba(15, 13, 10, 0.85) 30%,
      rgba(15, 13, 10, 0.4) 60%,
      transparent 100%);
  pointer-events: none;
}

/* ── Particle Canvas ───────────────────────────────── */
.particle-canvas {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.4;
}

/* ── Header ────────────────────────────────────────── */
.header {
  position: fixed;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%) translateY(-30px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.75rem;
  background: rgba(15, 13, 10, 0.55);
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: 60px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
  /* Animation initial state */
  opacity: 0;
}

.header.animate-in {
  animation: slideDownPill var(--duration-slow) var(--ease-out-expo) forwards;
}

@keyframes slideDownPill {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.nav-left {
  display: flex;
  gap: 2rem;
  flex: 1;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color 0.3s ease, transform 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.4s var(--ease-out-expo);
}

.nav-link:hover {
  color: var(--color-gold-light);
  transform: translateY(-1px);
}

.nav-link:hover::after {
  width: 100%;
}

/* Logo */
.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--color-gold-dim);
  box-shadow: 0 2px 16px rgba(201, 169, 110, 0.15);
}

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-white);
  line-height: 1;
}

.logo-tagline {
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-top: 2px;
}

/* Countdown */
.nav-right {
  display: flex;
  justify-content: flex-end;
  flex: 1;
}

.countdown {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 36px;
}

.countdown-num {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--color-white);
  line-height: 1;
}

.countdown-label {
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 2px;
}

.countdown-sep {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-gold);
  margin-bottom: 10px;
  animation: blink 1.2s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.2;
  }
}

/* ── Hero Section ──────────────────────────────────── */
.hero {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 8rem var(--gap) 4rem;
}

.hero-content {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  /* Animation initial state */
  opacity: 0;
}

.hero-content.animate-in {
  animation: fadeInUp 1.4s var(--ease-out-expo) 0.3s forwards;
}

/* Decorative lines */
.deco-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  margin: 0 auto 2.5rem;
  opacity: 0;
  transform: scaleX(0);
}

.deco-line.animate-in {
  animation: expandLine 1.2s var(--ease-out-expo) 0.6s forwards;
}

.deco-line-bottom {
  margin: 2.5rem auto 0;
}

.deco-line-bottom.animate-in {
  animation: expandLine 1.2s var(--ease-out-expo) 1.4s forwards;
}

/* Title */
.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: 0.25em;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15em;
}

.title-line {
  display: block;
  overflow: hidden;
}

.title-line-1 {
  font-size: clamp(3rem, 10vw, 6.5rem);
  color: var(--color-white);
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

.title-line-2 {
  font-size: clamp(3.5rem, 12vw, 8rem);
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold), #a88542);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 30px rgba(201, 169, 110, 0.25));
}

/* Subtitle */
.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.5vw, 1.05rem);
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Email Form / CTA ─────────────────────────────── */
.cta-group {
  position: relative;
}

.email-form {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 440px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 60px;
  padding: 5px 5px 5px 1.5rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.email-form:focus-within {
  border-color: var(--color-gold);
  box-shadow: 0 0 30px rgba(201, 169, 110, 0.12);
}

.email-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: 0.03em;
  padding: 0.75rem 0;
}

.email-input::placeholder {
  color: var(--color-text-muted);
  font-weight: 300;
}

.notify-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: linear-gradient(135deg, var(--color-gold), #b8923f);
  color: var(--color-surface-solid);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  transition: all 0.35s var(--ease-out-expo);
  white-space: nowrap;
}

.notify-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 24px rgba(201, 169, 110, 0.4);
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
}

.notify-btn:active {
  transform: scale(0.98);
}

.btn-arrow {
  transition: transform 0.3s ease;
}

.notify-btn:hover .btn-arrow {
  transform: translateX(3px);
}

/* Success state */
.form-success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem;
  color: var(--color-gold-light);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.form-success.show {
  display: flex;
  animation: fadeInUp 0.6s var(--ease-out-expo) forwards;
}

.form-success svg {
  color: var(--color-gold);
  flex-shrink: 0;
}

/* ── About Card ────────────────────────────────────── */
.about-card {
  position: relative;
  z-index: 10;
  margin-top: 2rem;
  width: 100%;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  /* Animation initial */
  opacity: 0;
  transform: translateY(40px);
}

.about-card.animate-in {
  animation: fadeInUp 1.2s var(--ease-out-expo) 1s forwards;
}

.about-inner {
  background: var(--color-surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 169, 110, 0.12);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: border-color 0.5s ease, box-shadow 0.5s ease;
}

.about-inner:hover {
  border-color: rgba(201, 169, 110, 0.25);
  box-shadow: 0 12px 60px rgba(0, 0, 0, 0.3);
}

.about-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--color-gold);
  transition: transform 0.5s var(--ease-out-expo), background 0.5s ease;
}

.about-inner:hover .about-icon {
  transform: scale(1.08) rotate(-5deg);
  background: rgba(201, 169, 110, 0.35);
}

.about-text-block h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
}

.about-text-block p {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* Stats */
.stats-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-gold);
  line-height: 1;
}

.stat-plus {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-gold);
}

.stat-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 0.3rem;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(201, 169, 110, 0.15);
}

/* ── Footer ────────────────────────────────────────── */
.footer {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 3rem var(--gap) 2rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  /* Animation initial */
  opacity: 0;
  transform: translateY(20px);
}

.social-links.animate-in {
  animation: fadeInUp 1s var(--ease-out-expo) 1.6s forwards;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--color-text-muted);
  transition: all 0.35s var(--ease-out-expo);
}

.social-icon:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: var(--color-gold-dim);
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 6px 20px rgba(201, 169, 110, 0.2);
}

.footer-copy {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  opacity: 0;
}

.footer-copy.animate-in {
  animation: fadeIn 1s ease 2s forwards;
}

/* ── Floating Contact Buttons ──────────────────────── */
.floating-buttons {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  opacity: 0;
  transform: translateY(30px);
}

.floating-buttons.animate-in {
  animation: fadeInUp 0.8s var(--ease-out-expo) 2.2s forwards;
}

.fab {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: #fff;
  transition: all 0.35s var(--ease-out-expo);
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.fab::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 0.4s ease;
}

.fab:hover {
  transform: scale(1.12) translateY(-3px);
}

.fab:active {
  transform: scale(0.95);
}

/* WhatsApp */
.fab-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.fab-whatsapp:hover {
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
}

.fab-whatsapp::before {
  animation: fabPulse 2.5s ease-in-out infinite;
}

/* Phone */
.fab-phone {
  background: linear-gradient(135deg, var(--color-gold), #a17a30);
}

.fab-phone:hover {
  box-shadow: 0 6px 28px rgba(201, 169, 110, 0.45);
}

.fab-phone::before {
  animation: fabPulse 2.5s ease-in-out 1.25s infinite;
}

/* Tooltip labels */
.fab::after {
  content: attr(aria-label);
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: rgba(26, 22, 18, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s var(--ease-out-expo);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.fab:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ── Neon Zero2X Labs Credit ──────────────────────── */
.footer-credit {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-top: 0.6rem;
  opacity: 0;
}

.footer-credit.animate-in {
  animation: fadeIn 1s ease 2.4s forwards;
}

.neon-link {
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #00f0ff;
  text-shadow:
    0 0 7px rgba(0, 240, 255, 0.6),
    0 0 20px rgba(0, 240, 255, 0.4),
    0 0 40px rgba(0, 240, 255, 0.2);
  transition: all 0.4s ease;
  position: relative;
  padding: 0 2px;
}

.neon-link:hover {
  color: #fff;
  text-shadow:
    0 0 10px rgba(0, 240, 255, 0.9),
    0 0 30px rgba(0, 240, 255, 0.7),
    0 0 60px rgba(0, 240, 255, 0.5),
    0 0 90px rgba(0, 240, 255, 0.3);
}

.neon-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #00f0ff;
  box-shadow: 0 0 8px rgba(0, 240, 255, 0.6);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s var(--ease-out-expo);
}

.neon-link:hover::after {
  transform: scaleX(1);
}

/* Continuous subtle neon pulse */
@keyframes neonPulse {

  0%,
  100% {
    text-shadow:
      0 0 7px rgba(0, 240, 255, 0.6),
      0 0 20px rgba(0, 240, 255, 0.4),
      0 0 40px rgba(0, 240, 255, 0.2);
  }

  50% {
    text-shadow:
      0 0 10px rgba(0, 240, 255, 0.8),
      0 0 30px rgba(0, 240, 255, 0.6),
      0 0 60px rgba(0, 240, 255, 0.35),
      0 0 80px rgba(0, 240, 255, 0.15);
  }
}

.neon-link {
  animation: neonPulse 3s ease-in-out infinite;
}

/* ── Keyframes ─────────────────────────────────────── */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes expandLine {
  from {
    opacity: 0;
    transform: scaleX(0);
  }

  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes fabPulse {

  0%,
  100% {
    border-color: transparent;
    opacity: 1;
  }

  50% {
    border-color: rgba(255, 255, 255, 0.2);
    opacity: 0.5;
    transform: scale(1.15);
  }
}

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 768px) {
  .header {
    padding: 1rem 1.25rem;
    width: 80%;
  }

  .nav-left {
    display: none;
  }

  .logo-container {
    justify-content: flex-start;
  }

  .logo-img {
    width: 36px;
    height: 36px;
  }

  .logo-name {
    font-size: 1.1rem;
  }

  .countdown-item {
    min-width: 28px;
  }

  .countdown-num {
    font-size: 1rem;
  }

  .hero {
    padding: 7rem 1.25rem 3rem;
  }

  .hero-subtitle br {
    display: none;
  }

  .email-form {
    flex-direction: column;
    border-radius: 16px;
    padding: 1rem;
    gap: 0.75rem;
  }

  .email-input {
    width: 100%;
    text-align: center;
    padding: 0.5rem 0;
  }

  .notify-btn {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1.5rem;
    border-radius: 12px;
  }

  .about-inner {
    padding: 1.75rem 1.25rem;
    border-radius: 16px;
  }

  .stats-row {
    gap: 1.25rem;
  }

  .stat-num {
    font-size: 1.6rem;
  }

  .social-icon {
    width: 40px;
    height: 40px;
  }

  .floating-buttons {
    bottom: 1.25rem;
    right: 1.25rem;
    gap: 0.6rem;
  }

  .fab {
    width: 48px;
    height: 48px;
  }

  .fab::after {
    display: none;
  }
}

@media (max-width: 400px) {
  .title-line-1 {
    font-size: 2.5rem;
  }

  .title-line-2 {
    font-size: 3rem;
  }
}