/* =============================================
   NOVE WELLNESS CREATORS — HIP & KITSCHY STYLE
   Color Palette: Warm, Vibrant, Anti-Black
   ============================================= */

:root {
  /* Brand Colors */
  --nove-primary: #FF6B6B;       /* coral/red */
  --nove-secondary: #FFE66D;     /* bright yellow */
  --nove-accent: #4ECDC4;        /* teal/mint */
  --nove-purple: #A29BFE;        /* soft purple */
  --nove-pink: #FD79A8;          /* hot pink */
  --nove-green: #55EFC4;         /* mint green */
  --nove-orange: #FDCB6E;        /* warm orange */
  
  /* Backgrounds */
  --bg-main: #FFFEF7;            /* warm off-white */
  --bg-card: #FFFFFF;
  --bg-section: #FFF9F0;
  --bg-dark: #2D2416;            /* warm dark brown */
  --bg-nude: #F5EFE6;
  
  /* Text */
  --text-main: #2D2416;
  --text-body: #5C4F3D;
  --text-muted: #9E8F7D;
  --text-light: #C4B5A3;
  
  /* Borders */
  --border-light: rgba(45, 36, 22, 0.1);
  --border-medium: rgba(45, 36, 22, 0.2);
  
  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Noto Sans KR', -apple-system, sans-serif;
  --font-mono: 'Space Mono', monospace;
  
  /* Spacing */
  --section-padding: 100px 0;
  --container-max: 1200px;
  
  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(45, 36, 22, 0.08);
  --shadow-md: 0 8px 32px rgba(45, 36, 22, 0.12);
  --shadow-lg: 0 20px 60px rgba(45, 36, 22, 0.15);
  
  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Import Noto Sans KR */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700&family=Space+Mono:wght@400;700&display=swap');

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* === SCROLLBAR === */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-nude);
}
::-webkit-scrollbar-thumb {
  background: var(--nove-primary);
  border-radius: 3px;
}

/* === CONTAINER === */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  background: rgba(255, 254, 247, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.nav.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--nove-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: 0.08em;
}

.nav-logo-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nove-primary);
  background: rgba(255, 107, 107, 0.1);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-body);
  transition: var(--transition);
  letter-spacing: 0.05em;
}

.nav-links a:hover {
  color: var(--nove-primary);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-support {
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-support a {
  color: var(--nove-accent);
  font-weight: 500;
  transition: var(--transition);
}

.nav-support a:hover {
  color: var(--nove-primary);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-main);
  transition: var(--transition);
  border-radius: 2px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--nove-primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 107, 107, 0.4);
}

.btn-primary:hover {
  background: #e85555;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 107, 107, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--text-main);
  border: 2px solid var(--border-medium);
}

.btn-secondary:hover {
  border-color: var(--nove-primary);
  color: var(--nove-primary);
  background: rgba(255, 107, 107, 0.05);
}

.btn-accent {
  background: var(--nove-secondary);
  color: var(--text-main);
  box-shadow: 0 4px 20px rgba(255, 230, 109, 0.4);
}

.btn-accent:hover {
  background: #f0d85a;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 230, 109, 0.5);
}

.btn-dark {
  background: var(--bg-dark);
  color: #fff;
}

.btn-dark:hover {
  background: #3d3120;
  transform: translateY(-2px);
}

.btn-outline-primary {
  background: transparent;
  color: var(--nove-primary);
  border: 2px solid var(--nove-primary);
}

.btn-outline-primary:hover {
  background: var(--nove-primary);
  color: #fff;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 16px;
}

/* === SECTION COMMON === */
.section {
  padding: var(--section-padding);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--nove-primary);
  background: rgba(255, 107, 107, 0.08);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-main);
  margin-bottom: 16px;
}

.section-title .highlight {
  color: var(--nove-primary);
  font-style: italic;
}

.section-desc {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.8;
  max-width: 600px;
}

/* === MARQUEE / TICKER === */
.marquee-wrap {
  overflow: hidden;
  background: var(--nove-primary);
  padding: 14px 0;
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marqueeScroll 25s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 0 32px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #fff;
}

.marquee-item::after {
  content: '✦';
  opacity: 0.6;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* === CARDS === */
.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

/* === BADGE / TAG === */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.badge-primary {
  background: rgba(255, 107, 107, 0.12);
  color: var(--nove-primary);
}

.badge-accent {
  background: rgba(78, 205, 196, 0.12);
  color: var(--nove-accent);
}

.badge-yellow {
  background: rgba(255, 230, 109, 0.25);
  color: #8a7200;
}

.badge-purple {
  background: rgba(162, 155, 254, 0.15);
  color: #6c63ff;
}

.badge-pink {
  background: rgba(253, 121, 168, 0.12);
  color: #e0446e;
}

/* === STAT NUMBERS === */
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}

/* === FOOTER === */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 24px 32px;
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.footer-brand-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-supported {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.footer-supported a {
  color: var(--nove-accent);
  font-weight: 500;
  transition: var(--transition);
}

.footer-supported a:hover {
  color: var(--nove-green);
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--nove-primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  transition: var(--transition);
}

.footer-legal a:hover {
  color: rgba(255,255,255,0.7);
}

/* === FORM ELEMENTS === */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: 0.03em;
}

.form-label span {
  color: var(--nove-primary);
}

.form-control {
  padding: 14px 18px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text-main);
  background: #fff;
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--nove-primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.12);
}

.form-control::placeholder {
  color: var(--text-light);
}

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239E8F7D' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* === TABS === */
.tabs-nav {
  display: flex;
  gap: 8px;
  padding: 6px;
  background: var(--bg-nude);
  border-radius: var(--radius-xl);
  margin-bottom: 32px;
  overflow-x: auto;
}

.tab-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--text-muted);
  transition: var(--transition);
  white-space: nowrap;
}

.tab-btn.active {
  background: #fff;
  color: var(--nove-primary);
  box-shadow: var(--shadow-sm);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  :root {
    --section-padding: 70px 0;
  }

  .nav-links,
  .nav-support {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  :root {
    --section-padding: 56px 0;
  }
  
  .container {
    padding: 0 16px;
  }
  
  .btn {
    padding: 12px 20px;
    font-size: 13px;
  }
}

/* === UTILITY CLASSES === */
.text-primary { color: var(--nove-primary); }
.text-accent { color: var(--nove-accent); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.text-right { text-align: right; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.items-center { align-items: center; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.gap-48 { gap: 48px; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.w-full { width: 100%; }
.rounded-full { border-radius: var(--radius-full); }

/* === ANIMATED GRADIENT TEXT === */
.gradient-text {
  background: linear-gradient(135deg, var(--nove-primary), var(--nove-pink), var(--nove-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === BLOB DECORATION === */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

/* === DASHBOARD SPECIFIC === */
.kpi-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.kpi-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.kpi-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.kpi-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.kpi-value {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  color: var(--text-main);
  line-height: 1;
}

.kpi-change {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 8px;
}

.kpi-change.up { color: #00b894; }
.kpi-change.down { color: var(--nove-primary); }

/* === PRODUCT TABLE === */
.product-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.product-table th {
  text-align: left;
  padding: 12px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 2px solid var(--border-light);
}

.product-table td {
  padding: 16px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-body);
  vertical-align: middle;
}

.product-table tr:hover td {
  background: var(--bg-section);
}

/* === NOTIFICATION / ALERT === */
.alert {
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.alert-info {
  background: rgba(78, 205, 196, 0.1);
  color: #0e7a75;
  border: 1px solid rgba(78, 205, 196, 0.25);
}

.alert-warning {
  background: rgba(255, 230, 109, 0.15);
  color: #7a6500;
  border: 1px solid rgba(255, 230, 109, 0.4);
}

.alert-error {
  background: rgba(255, 107, 107, 0.1);
  color: #c0392b;
  border: 1px solid rgba(255, 107, 107, 0.25);
}

/* === STICKER / FUN ELEMENTS === */
.sticker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transform: rotate(-2deg);
}

.sticker-yellow {
  background: var(--nove-secondary);
  color: var(--text-main);
}

.sticker-red {
  background: var(--nove-primary);
  color: #fff;
}

.sticker-teal {
  background: var(--nove-accent);
  color: #fff;
}
