/* ==========================================================================
   TOYOU — Mindful Living, Beautiful Being
   Premium Coming Soon Design System
   Brand Palette: Deep Moss (#27331f), Champagne Gold (#efc8a3), Obsidian (#1d1516)
   ========================================================================== */

:root {
  /* Brand Primary Colors */
  --c-moss-darkest: #0e160c;
  --c-moss-dark: #172314;
  --c-moss-primary: #27331f;
  --c-moss-medium: #36462c;
  --c-moss-light: #495e3c;
  
  /* Brand Gold / Warm Champagne Accents */
  --c-gold-subtle: #8e785e;
  --c-gold-primary: #dcb382;
  --c-gold-light: #efc8a3;
  --c-gold-glow: rgba(239, 200, 163, 0.25);
  
  /* Neutral / Paper / Text Colors */
  --c-obsidian: #1d1516;
  --c-sand: #f8f5ee;
  --c-sand-muted: #dcd6c8;
  --c-sand-faded: #a9a394;
  
  /* Glass Surfaces */
  --glass-bg: rgba(23, 35, 20, 0.65);
  --glass-border: rgba(239, 200, 163, 0.18);
  --glass-card-bg: rgba(28, 41, 25, 0.72);
  --glass-card-border: rgba(239, 200, 163, 0.22);
  --glass-highlight: rgba(255, 255, 255, 0.05);

  /* Typography */
  --font-serif: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Transitions */
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--c-moss-darkest);
  color: var(--c-sand);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background: radial-gradient(circle at 50% 20%, #202d19 0%, #151e11 45%, #0b1109 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Background Canvas for subtle golden Zen particles */
#zen-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
  opacity: 0.75;
}

/* Ambient Radial Glows */
.ambient-glow {
  position: fixed;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(140px);
  z-index: 0;
}

.glow-top {
  width: 700px;
  height: 500px;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(239, 200, 163, 0.15) 0%, rgba(47, 68, 38, 0.25) 50%, transparent 70%);
}

.glow-bottom {
  width: 900px;
  height: 600px;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(54, 70, 44, 0.22) 0%, rgba(20, 30, 17, 0.1) 60%, transparent 80%);
}

/* Layout Wrapper */
.site-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3rem;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.25rem;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  margin-bottom: 2.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.brand-mini {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mini-emblem {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

.mini-brand-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--c-gold-light);
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Language Switcher */
.lang-switch {
  display: flex;
  align-items: center;
  background: rgba(14, 22, 12, 0.6);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(239, 200, 163, 0.2);
  gap: 0.35rem;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--c-sand-faded);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  transition: var(--transition-smooth);
}

.lang-btn:hover {
  color: var(--c-sand);
}

.lang-btn.active {
  background: var(--c-gold-light);
  color: var(--c-moss-darkest);
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(239, 200, 163, 0.3);
}

.lang-divider {
  color: rgba(239, 200, 163, 0.3);
  font-size: 0.75rem;
}

/* Main Hero Stage */
.hero-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

/* Status Pill */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(39, 51, 31, 0.8);
  border: 1px solid rgba(239, 200, 163, 0.35);
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.pulsing-leaf {
  font-size: 0.95rem;
  animation: leafPulse 2.8s infinite ease-in-out;
}

@keyframes leafPulse {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.9; }
  50% { transform: scale(1.15) rotate(6deg); opacity: 1; }
}

.status-text {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-gold-light);
}

/* Emblem Showcase */
.emblem-wrapper {
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
}

.emblem-container {
  position: relative;
  z-index: 3;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.emblem-container:hover {
  transform: scale(1.04);
}

.hero-emblem {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.6))
          drop-shadow(0 0 35px rgba(239, 200, 163, 0.3));
}

/* Halo Rings */
.halo-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.halo-outer {
  width: 230px;
  height: 230px;
  border: 1px dashed rgba(239, 200, 163, 0.25);
  animation: spinSlow 40s linear infinite;
}

.halo-inner {
  width: 200px;
  height: 200px;
  border: 1px solid rgba(239, 200, 163, 0.15);
  box-shadow: inset 0 0 25px rgba(239, 200, 163, 0.08),
              0 0 35px rgba(39, 51, 31, 0.5);
  animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.4; transform: scale(0.98); }
  50% { opacity: 0.8; transform: scale(1.02); }
}

/* Brand Heading Typography */
.brand-heading-group {
  margin-bottom: 2.25rem;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 4.75rem);
  font-weight: 700;
  letter-spacing: 0.28em;
  text-indent: 0.28em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #fff7ed 0%, #efc8a3 40%, #c89e67 80%, #ffd9b5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.6rem;
  filter: drop-shadow(0 4px 18px rgba(0, 0, 0, 0.5));
}

.brand-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto 0.9rem;
  width: 100%;
  max-width: 320px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(239, 200, 163, 0.4), transparent);
}

.leaf-icon {
  width: 18px;
  height: 18px;
  color: var(--c-gold-light);
  opacity: 0.85;
}

.brand-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--c-gold-light);
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.brand-sub-tagline {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-sand-faded);
  font-style: italic;
}

/* Announcement Card */
.announcement-card {
  width: 100%;
  max-width: 780px;
  background: var(--glass-card-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-card-border);
  border-radius: 28px;
  padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 4vw, 2.75rem);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
              inset 0 1px 0 var(--glass-highlight);
  margin-bottom: 3.5rem;
}

.announcement-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--c-sand);
  margin-bottom: 1.25rem;
}

.announcement-desc {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: var(--c-sand-muted);
  line-height: 1.8;
  max-width: 650px;
  margin: 0 auto 2.25rem;
}

/* Countdown Section */
.countdown-section {
  background: rgba(14, 22, 12, 0.7);
  border: 1px solid rgba(239, 200, 163, 0.16);
  border-radius: 20px;
  padding: 1.5rem 1.25rem;
  margin-bottom: 2.25rem;
}

.countdown-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold-primary);
  margin-bottom: 1rem;
}

.countdown-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.5rem, 2vw, 1.25rem);
}

.countdown-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: clamp(54px, 12vw, 75px);
  background: rgba(39, 51, 31, 0.4);
  border: 1px solid rgba(239, 200, 163, 0.2);
  border-radius: 14px;
  padding: 0.6rem 0.4rem;
}

.countdown-number {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4.5vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(239, 200, 163, 0.3);
}

.countdown-unit {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-sand-faded);
  margin-top: 0.25rem;
}

.countdown-colon {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--c-gold-subtle);
  margin-top: -12px;
}

/* Newsletter VIP Card */
.newsletter-card {
  background: linear-gradient(180deg, rgba(39, 51, 31, 0.45) 0%, rgba(20, 30, 17, 0.6) 100%);
  border: 1px solid rgba(239, 200, 163, 0.25);
  border-radius: 20px;
  padding: 1.75rem clamp(1rem, 3vw, 1.75rem);
}

.newsletter-header {
  margin-bottom: 1.25rem;
}

.newsletter-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--c-gold-light);
  margin-bottom: 0.4rem;
}

.newsletter-subtitle {
  font-size: 0.88rem;
  color: var(--c-sand-faded);
  max-width: 520px;
  margin: 0 auto;
}

.subscribe-form {
  width: 100%;
}

.input-wrapper {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  background: rgba(14, 22, 12, 0.8);
  border: 1px solid rgba(239, 200, 163, 0.3);
  border-radius: 999px;
  padding: 0.35rem 0.45rem 0.35rem 1.25rem;
  transition: var(--transition-smooth);
}

.input-wrapper:focus-within {
  border-color: var(--c-gold-light);
  box-shadow: 0 0 20px rgba(239, 200, 163, 0.25);
}

.form-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--c-sand);
  min-width: 0;
}

.form-input::placeholder {
  color: var(--c-sand-faded);
  opacity: 0.7;
}

.submit-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #efc8a3 0%, #d4af37 100%);
  color: var(--c-moss-darkest);
  border: none;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.3);
}

.submit-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(239, 200, 163, 0.45);
}

.submit-button:active {
  transform: translateY(0);
}

.btn-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

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

.form-feedback {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: rgba(39, 51, 31, 0.75);
  border: 1px solid rgba(239, 200, 163, 0.4);
  color: var(--c-gold-light);
  font-size: 0.9rem;
  font-weight: 500;
  animation: fadeIn 0.4s ease;
}

.form-feedback.hidden {
  display: none;
}

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

/* Three Pillars Section */
.pillars-section {
  width: 100%;
  margin-bottom: 3.5rem;
}

.section-badge-wrapper {
  margin-bottom: 1.75rem;
}

.section-badge {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--c-gold-primary);
  text-transform: uppercase;
  background: rgba(39, 51, 31, 0.5);
  border: 1px solid rgba(239, 200, 163, 0.2);
  padding: 0.35rem 1rem;
  border-radius: 999px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pillar-card {
  background: var(--glass-card-bg);
  border: 1px solid var(--glass-card-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 22px;
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition-smooth);
}

.pillar-card:hover {
  transform: translateY(-4px);
  border-color: rgba(239, 200, 163, 0.45);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35),
              0 0 25px rgba(239, 200, 163, 0.1);
}

.pillar-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(39, 51, 31, 0.9) 0%, rgba(20, 30, 17, 0.9) 100%);
  border: 1px solid rgba(239, 200, 163, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--c-gold-light);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.pillar-svg {
  width: 28px;
  height: 28px;
}

.pillar-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--c-sand);
  margin-bottom: 0.75rem;
}

.pillar-desc {
  font-size: 0.88rem;
  color: var(--c-sand-muted);
  line-height: 1.65;
}

/* Connect & Channel Section */
.connect-section {
  width: 100%;
  max-width: 780px;
  margin-bottom: 3.5rem;
}

.connect-heading {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--c-gold-light);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.connect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.connect-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(28, 41, 25, 0.6);
  border: 1px solid rgba(239, 200, 163, 0.18);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

.connect-item:hover {
  background: rgba(39, 51, 31, 0.8);
  border-color: rgba(239, 200, 163, 0.4);
  transform: translateY(-2px);
}

.connect-icon {
  font-size: 1.4rem;
}

.connect-info {
  display: flex;
  flex-direction: column;
  text-align: left;
  min-width: 0;
}

.connect-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-sand-faded);
}

.connect-value {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--c-sand);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Site Footer */
.site-footer {
  width: 100%;
  text-align: center;
  margin-top: auto;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(239, 200, 163, 0.25), transparent);
  margin-bottom: 2rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--c-gold-light);
}

.footer-slogan {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-sand-faded);
}

.legal-disclaimer {
  max-width: 720px;
  font-size: 0.76rem;
  line-height: 1.6;
  color: var(--c-sand-faded);
  opacity: 0.75;
  font-style: italic;
  padding: 0.5rem 1rem;
  border-top: 1px dashed rgba(239, 200, 163, 0.12);
  border-bottom: 1px dashed rgba(239, 200, 163, 0.12);
}

.copyright-text {
  font-size: 0.8rem;
  color: var(--c-sand-faded);
}

.domain-highlight {
  color: var(--c-gold-light);
  font-weight: 600;
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */
@media (max-width: 900px) {
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .connect-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-wrapper {
    padding: 1rem 1rem 2.5rem;
  }

  .site-header {
    padding: 0.6rem 1rem;
    margin-bottom: 2rem;
  }

  .mini-brand-name {
    font-size: 1.1rem;
  }

  .emblem-wrapper {
    width: 180px;
    height: 180px;
    margin-bottom: 1.25rem;
  }

  .emblem-container {
    width: 145px;
    height: 145px;
  }

  .halo-outer {
    width: 190px;
    height: 190px;
  }

  .halo-inner {
    width: 165px;
    height: 165px;
  }

  .brand-title {
    margin-bottom: 0.4rem;
  }

  .announcement-card {
    padding: 1.75rem 1.25rem;
    border-radius: 22px;
  }

  .countdown-grid {
    gap: 0.4rem;
  }

  .countdown-box {
    min-width: 48px;
    padding: 0.5rem 0.25rem;
  }

  .input-wrapper {
    flex-direction: column;
    border-radius: 20px;
    padding: 0.75rem;
    gap: 0.75rem;
  }

  .form-input {
    padding: 0.25rem 0.5rem;
    text-align: center;
  }

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