/* ========================================
   PREMIUM SUPPS AUSTRALIA — COMING SOON
   ======================================== */

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

:root {
  --color-bg: #0a0a0f;
  --color-surface: #12121a;
  --color-text: rgba(255, 255, 255, 0.6);
  --color-heading: #ffffff;
  --color-accent: #d0473e;
  --color-accent-glow: rgba(208, 71, 62, 0.3);
  --color-accent-hover: #e05249;
  --color-border: rgba(255, 255, 255, 0.08);

  --font-body: 'Jost', sans-serif;
  --font-heading: 'Instrument Sans', sans-serif;

  --transition: 0.3s cubic-bezier(.3, 1, .3, 1);
}

html {
  scroll-behavior: smooth;
}

body.coming-soon-page {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

/* --- Coming Soon Layout --- */
.coming-soon {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 40px 24px;
}

/* --- Background Elements --- */
.bg-elements {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.bg-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.bg-circle-1 {
  width: 600px;
  height: 600px;
  background: var(--color-accent);
  opacity: 0.06;
  top: -200px;
  right: -150px;
  animation: float 12s ease-in-out infinite;
}

.bg-circle-2 {
  width: 400px;
  height: 400px;
  background: #1a3a6e;
  opacity: 0.1;
  bottom: -100px;
  left: -100px;
  animation: float 15s ease-in-out infinite reverse;
}

.bg-circle-3 {
  width: 300px;
  height: 300px;
  background: var(--color-accent);
  opacity: 0.04;
  top: 40%;
  left: 50%;
  animation: float 10s ease-in-out infinite 3s;
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

/* --- Content --- */
.coming-soon-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  width: 100%;
}

/* --- Logo --- */
.logo-area {
  margin-bottom: 32px;
  animation: fadeInDown 0.8s ease-out;
}

.logo {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-heading);
  letter-spacing: -0.5px;
}

.logo span {
  font-weight: 400;
  color: var(--color-accent);
}

.logo-tagline {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 4px;
}

/* --- Status Badge --- */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(208, 71, 62, 0.1);
  border: 1px solid rgba(208, 71, 62, 0.2);
  border-radius: 50px;
  padding: 8px 20px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  position: relative;
  flex-shrink: 0;
}

.pulse-dot::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.4;
  animation: pulse 2s ease-in-out infinite;
}

/* --- Heading --- */
.coming-soon-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 700;
  color: var(--color-heading);
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* --- Subtitle --- */
.subtitle {
  font-size: 17px;
  color: var(--color-text);
  line-height: 1.7;
  max-width: 460px;
  margin: 0 auto 48px;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

/* --- Notify Section --- */
.notify-section {
  animation: fadeInUp 0.8s ease-out 0.4s both;
  margin-bottom: 40px;
}

.notify-label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 16px;
}

.notify-form {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto;
}

.notify-form input {
  flex: 1;
  padding: 15px 20px;
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-heading);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}

.notify-form input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.notify-form input:focus {
  border-color: rgba(208, 71, 62, 0.4);
  background: rgba(255, 255, 255, 0.06);
}

/* --- Button --- */
.btn {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 15px 28px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-accent);
  color: #ffffff;
  box-shadow: 0 4px 24px var(--color-accent-glow);
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  box-shadow: 0 6px 32px var(--color-accent-glow);
  transform: translateY(-1px);
}

.btn-success {
  background: #2ecc71;
  color: #ffffff;
  box-shadow: 0 4px 24px rgba(46, 204, 113, 0.3);
}

/* --- Divider --- */
.divider {
  width: 60px;
  height: 1px;
  background: var(--color-border);
  margin: 0 auto 40px;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

/* --- Contact Section --- */
.contact-section {
  animation: fadeInUp 0.8s ease-out 0.55s both;
}

.contact-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 12px;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-heading);
  padding: 12px 24px;
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  transition: all var(--transition);
}

.contact-email:hover {
  border-color: rgba(208, 71, 62, 0.3);
  background: rgba(208, 71, 62, 0.06);
  color: var(--color-accent);
}

.contact-email svg {
  flex-shrink: 0;
  opacity: 0.6;
}

.contact-email:hover svg {
  opacity: 1;
  color: var(--color-accent);
}

/* --- Footer --- */
.coming-soon-footer {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 60px;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.coming-soon-footer p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.2);
  font-family: var(--font-heading);
}

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}

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

/* --- Responsive --- */
@media (max-width: 600px) {
  .coming-soon {
    padding: 32px 20px;
  }

  .logo { font-size: 26px; }
  .logo-area { margin-bottom: 24px; }
  .status-badge { font-size: 11px; padding: 6px 16px; margin-bottom: 32px; }
  .subtitle { font-size: 15px; margin-bottom: 36px; }

  .notify-form {
    flex-direction: column;
  }

  .notify-form input { padding: 14px 16px; }
  .btn { width: 100%; padding: 14px 24px; }

  .contact-email {
    font-size: 13px;
    padding: 10px 16px;
    gap: 8px;
  }

  .contact-email svg {
    width: 16px;
    height: 16px;
  }
}
