/* ═══════════════════════════════════════
   DESIGN SYSTEM
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Colors */
  --cream:       #FAF8F4;
  --cream-2:     #F2EFE8;
  --cream-3:     #E8E4DA;
  --ink:         #0D0D10;
  --ink-2:       #161619;
  --ink-3:       #222228;
  --gold:        #059669;
  --gold-light:  #34d399;
  --gold-pale:   #d1fae5;
  --text:        #111114;
  --muted:       #6B6B75;
  --muted-2:     #9A9AA4;
  --border:      #E2DDD6;
  --border-dark: rgba(255,255,255,0.08);
  --purple:      #059669;
  --purple-light:#34d399;
  --white:       #FFFFFF;

  /* Type */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-pad: 112px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.nav.scrolled {
  box-shadow: 0 1px 24px rgba(0,0,0,0.06);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.nav-logo {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  white-space: nowrap;
}

.nav-logo span {
  color: var(--ink);
}

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

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.15s;
}

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

.nav-nuvos {
  color: var(--purple-light) !important;
  font-weight: 600 !important;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-nuvos::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--purple-light);
  animation: dot-pulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-icon {
  color: var(--muted-2);
  display: flex;
  align-items: center;
  transition: color 0.15s;
}
.social-icon:hover { color: var(--ink); }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(196,145,42,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero-eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold);
}

.hero-headline {
  font-size: clamp(48px, 6.5vw, 80px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 28px;
}

.hero-headline em {
  font-style: italic;
  font-weight: 600;
  color: var(--gold);
}

.hero-desc {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-image { position: relative; }

.avatar {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 20px;
  overflow: hidden;
  background: var(--cream-2);
  position: relative;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.avatar::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06);
}

.hero-badge {
  position: absolute;
  bottom: -16px;
  left: -20px;
  background: var(--ink);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.hero-badge-value {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gold-light);
  display: block;
  line-height: 1;
  margin-bottom: 2px;
}

.hero-badge-label {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--ink);
  color: var(--white);
  padding: 13px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.15s, transform 0.12s, box-shadow 0.15s;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}

.btn-primary:hover {
  background: var(--ink-3);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--text);
  padding: 13px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1.5px solid var(--border);
  transition: border-color 0.15s, background 0.15s;
}

.btn-ghost:hover {
  border-color: var(--ink);
  background: var(--cream-2);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  padding: 10px 18px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.15);
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}

/* ═══════════════════════════════════════
   SECTIONS — SHARED
═══════════════════════════════════════ */
.section { padding: var(--section-pad) 0; }

.section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 56px;
  color: var(--ink);
}

/* ═══════════════════════════════════════
   NUVOS TEASER
═══════════════════════════════════════ */
.nuvos-teaser {
  background: #030d08;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.nuvos-teaser::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(5,150,105,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.nuvos-teaser::after {
  content: '';
  position: absolute;
  bottom: -100px; right: 0;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(196,145,42,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.teaser-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 24px;
}

.teaser-title {
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
}

.teaser-title span {
  background: linear-gradient(135deg, var(--purple-light) 0%, #6ee7b7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.teaser-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 400px;
}

.teaser-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--purple);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, transform 0.12s, box-shadow 0.15s;
  box-shadow: 0 0 32px rgba(5,150,105,0.35);
}

.teaser-cta:hover {
  background: #047857;
  transform: translateY(-2px);
  box-shadow: 0 0 48px rgba(5,150,105,0.5);
}

/* App mockup */
.app-mockup {
  background: #071a14;
  border: 1px solid rgba(5,150,105,0.25);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
}

.app-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: #041410;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.app-bar-dots {
  display: flex;
  gap: 6px;
}

.app-bar-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}

.app-bar-dots span:first-child { background: #ff5f57; }
.app-bar-dots span:nth-child(2) { background: #febc2e; }
.app-bar-dots span:nth-child(3) { background: #28c840; }

.app-bar-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.app-bar-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
}

.status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  animation: status-blink 2s ease-in-out infinite;
}

@keyframes status-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.app-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.chat-msg {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.chat-msg.user {
  flex-direction: row-reverse;
}

.chat-avatar {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--purple), #10b981);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}

.chat-bubble {
  font-size: 12.5px;
  line-height: 1.55;
  padding: 10px 14px;
  border-radius: 12px;
  max-width: 82%;
}

.chat-msg.ai .chat-bubble {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.8);
  border-top-left-radius: 4px;
}

.chat-msg.user .chat-bubble {
  background: rgba(5,150,105,0.25);
  border: 1px solid rgba(5,150,105,0.3);
  color: rgba(255,255,255,0.85);
  border-top-right-radius: 4px;
}

/* Mini chart */
.app-chart {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 14px 16px;
  margin-top: 4px;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
}

.chart-value {
  font-size: 16px;
  font-weight: 800;
  color: #22c55e;
  letter-spacing: -0.02em;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 56px;
}

.bar {
  flex: 1;
  background: rgba(5,150,105,0.25);
  border-radius: 4px 4px 0 0;
  position: relative;
  transition: background 0.2s;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.bar.active {
  background: linear-gradient(180deg, #10b981, #059669);
  box-shadow: 0 0 12px rgba(5,150,105,0.5);
}

.bar span {
  display: none;
}

@media (max-width: 820px) {
  .teaser-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ═══════════════════════════════════════
   ABOUT
═══════════════════════════════════════ */
.about {
  background: var(--ink);
  color: var(--white);
}

.about .section-label {
  color: var(--gold);
}

.about .section-label::before { background: var(--gold); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-text h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 28px;
}

.about-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 18px;
}

.pillars-heading {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pillars-heading::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--gold);
}

.pillar-list { list-style: none; }

.pillar-list li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.pillar-list li:first-child { border-top: 1px solid rgba(255,255,255,0.06); }

.pillar-num {
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   PHILOSOPHY
═══════════════════════════════════════ */
.philosophy { background: var(--cream); }

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.philosophy-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.philosophy-card {
  background: var(--white);
  padding: 44px 40px;
  transition: background 0.2s;
}

.philosophy-card:hover { background: var(--cream); }

.card-num {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.philosophy-card h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 14px;
  color: var(--ink);
}

.philosophy-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}

/* ═══════════════════════════════════════
   CONTENT
═══════════════════════════════════════ */
.content-sec { background: var(--ink-2); }

.content-sec .section-label { color: var(--gold); }
.content-sec .section-label::before { background: var(--gold); }
.content-sec .section-title { color: var(--white); }

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 56px;
}

.content-card {
  background: var(--ink-3);
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.content-card:hover {
  border-color: rgba(196,145,42,0.4);
  background: #1e1e24;
  transform: translateY(-3px);
}

.content-icon {
  color: var(--gold);
  display: flex;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(196,145,42,0.1);
  border: 1px solid rgba(196,145,42,0.2);
  align-items: center;
  justify-content: center;
}

.content-card h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
}

.content-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  flex: 1;
}

.content-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-light);
  text-decoration: none;
  margin-top: auto;
  transition: opacity 0.15s;
}

.content-link:hover { opacity: 0.7; }

.topics-wrap {
  border-top: 1px solid var(--border-dark);
  padding-top: 40px;
}

.topics-heading {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.tags { display: flex; flex-wrap: wrap; gap: 8px; }

.tag {
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.55);
  background: transparent;
  transition: border-color 0.15s, color 0.15s;
}

.tag:hover {
  border-color: rgba(196,145,42,0.5);
  color: var(--gold-light);
}

/* ═══════════════════════════════════════
   PRODUCTS
═══════════════════════════════════════ */
.products { background: var(--cream); }

.products-sublabel {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 20px;
  display: block;
}

/* Ebook card */
.ebook-card {
  display: flex;
  background: var(--ink);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 0;
}

.ebook-cover {
  width: 280px;
  flex-shrink: 0;
  background: #1a1410;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.ebook-cover img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  display: block;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
}

.ebook-cover.no-cover {
  align-items: center;
  justify-content: center;
  min-height: 340px;
  font-size: 48px;
}

.ebook-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ebook-body .product-type { color: rgba(255,255,255,0.35); margin-bottom: 10px; }
.ebook-body h3 { font-size: 24px; font-weight: 800; letter-spacing: -0.025em; color: var(--white); margin-bottom: 14px; line-height: 1.2; }
.ebook-body .product-desc { color: rgba(255,255,255,0.5); margin-bottom: 24px; }
.ebook-features li { color: rgba(255,255,255,0.7); }
.ebook-features li::before { color: var(--gold); }

.ebook-footer {
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,0.08) !important;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.ebook-footer .btn-primary {
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(196,145,42,0.35);
}

.ebook-footer .btn-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 6px 28px rgba(196,145,42,0.5);
}

/* Product badges */
.product-badge {
  display: inline-flex;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 16px;
  width: fit-content;
}

.product-badge.available {
  background: rgba(196,145,42,0.15);
  color: var(--gold-light);
  border: 1px solid rgba(196,145,42,0.3);
}

.product-badge.coming-soon {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.1);
}

.product-badge.construction {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.1);
}

.product-badge.nuvo-badge {
  background: rgba(5,150,105,0.2);
  color: var(--purple-light);
  border: 1px solid rgba(5,150,105,0.3);
}

.product-type {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 10px;
}

/* Products grid (smaller cards) */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.product-card {
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  background: var(--ink-2);
  transition: border-color 0.2s, transform 0.2s;
}

.product-card:hover {
  border-color: rgba(196,145,42,0.3);
  transform: translateY(-2px);
}

.product-card h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 12px;
}

.product-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin-bottom: 24px;
}

.product-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}

.product-features li {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  padding-left: 16px;
  position: relative;
  line-height: 1.4;
}

.product-features li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.2);
  font-size: 11px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 20px;
  flex-wrap: wrap;
}

.product-price-note {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* Pricing */
.product-pricing {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.price-original {
  font-size: 14px;
  color: rgba(255,255,255,0.3);
  text-decoration: line-through;
}

.price-sale {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--gold-light);
}

.price-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(196,145,42,0.15);
  color: var(--gold-light);
  border: 1px solid rgba(196,145,42,0.3);
  padding: 3px 8px;
  border-radius: 100px;
}

/* Nuvos featured */
.nuvo-featured {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 0;
  background: linear-gradient(135deg, #022c22 0%, #064e3b 50%, #022c22 100%);
  border-radius: 18px;
  overflow: hidden;
  padding: 44px;
  position: relative;
  border: 1px solid rgba(5,150,105,0.2);
}

.nuvo-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 30%, rgba(5,150,105,0.25) 0%, transparent 60%);
  pointer-events: none;
}

.nuvo-featured-left { position: relative; z-index: 1; }

.nuvo-type { color: rgba(52,211,153,0.5) !important; }

.nuvo-title {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.05;
  animation: nuvo-pulse 2.4s ease-in-out infinite;
}

.nuvo-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 24px;
}

.nuvo-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.nuvo-features li {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  padding-left: 18px;
  position: relative;
  line-height: 1.4;
}

.nuvo-features li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--purple-light);
  font-size: 12px;
}

.nuvo-featured-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.nuvo-icon-wrap {
  width: 80px; height: 80px;
  border-radius: 20px;
  background: rgba(5,150,105,0.2);
  border: 1px solid rgba(5,150,105,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-light);
}

.nuvo-coming {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.nuvo-coming::before {
  content: '';
  display: inline-block;
  width: 10px; height: 10px;
  border: 2px solid rgba(52,211,153,0.3);
  border-top-color: var(--purple-light);
  border-radius: 50%;
  animation: nuvo-spin 0.9s linear infinite;
  flex-shrink: 0;
}

.nuvo-tagline {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  font-style: italic;
  text-align: center;
  line-height: 1.5;
}

/* Waitlist */
.nuvos-waitlist {
  text-align: center;
  border-top: 1px solid var(--border);
  padding-top: 56px;
}

.nuvos-waitlist-label-dark {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.nuvos-waitlist-title-dark {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 10px;
}

.nuvos-waitlist-desc-dark {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 28px;
}

.nuvos-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.nuvos-form-light .newsletter-input {
  background: var(--white);
  border-color: var(--border);
  color: var(--text);
  max-width: 300px;
}

.nuvos-form-light .newsletter-input::placeholder { color: var(--muted-2); }
.nuvos-form-light .newsletter-input:focus { border-color: var(--purple); }

.newsletter-input {
  flex: 1;
  min-width: 200px;
  padding: 13px 18px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.15s;
}

.btn-nuvos {
  display: inline-flex;
  align-items: center;
  background: var(--purple);
  color: var(--white);
  padding: 13px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  transition: background 0.15s, transform 0.12s;
}

.btn-nuvos:hover { background: #047857; transform: translateY(-1px); }

.nuvos-confirm {
  margin-top: 14px;
  font-size: 14px;
  color: var(--purple) !important;
  display: block;
}

/* ═══════════════════════════════════════
   NUVOS AI SECTION
═══════════════════════════════════════ */
.nuvos-section {
  background: #040f0a;
  color: var(--white);
}

.nuvos-hero {
  text-align: center;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 80px;
}

.nuvos-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 24px;
}

.nuvo-spin-dot {
  width: 8px; height: 8px;
  border: 2px solid rgba(52,211,153,0.3);
  border-top-color: var(--purple-light);
  border-radius: 50%;
  display: inline-block;
  animation: nuvo-spin 0.9s linear infinite;
}

.nuvos-hero-title {
  font-size: clamp(64px, 10vw, 110px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 20px;
  animation: nuvo-pulse 2.4s ease-in-out infinite;
}

.nuvos-hero-title span {
  background: linear-gradient(135deg, var(--purple-light), #059669);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nuvos-hero-sub {
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.nuvos-hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}

.nuvos-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 80px;
}

.nuvos-feat {
  background: #040f0a;
  padding: 36px 30px;
  transition: background 0.2s;
}

.nuvos-feat:hover { background: #071a14; }

.nuvos-feat-icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: rgba(5,150,105,0.12);
  border: 1px solid rgba(5,150,105,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-light);
  margin-bottom: 18px;
}

.nuvos-feat h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.nuvos-feat p {
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 40px 0;
}

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

.footer-logo {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-email {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-email:hover { color: var(--gold-light); }

.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer .social-icon { color: rgba(255,255,255,0.3); }
.footer .social-icon:hover { color: var(--white); }

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

/* ═══════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════ */

.anim-fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1),
              transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.anim-fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1.15s cubic-bezier(0.22, 1, 0.36, 1),
              transform 1.15s cubic-bezier(0.22, 1, 0.36, 1);
}

.anim-fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1.15s cubic-bezier(0.22, 1, 0.36, 1),
              transform 1.15s cubic-bezier(0.22, 1, 0.36, 1);
}

.anim-scale {
  opacity: 0;
  transform: scale(0.94) translateY(16px);
  transition: opacity 1.0s cubic-bezier(0.22, 1, 0.36, 1),
              transform 1.0s cubic-bezier(0.22, 1, 0.36, 1);
}

.anim-visible {
  opacity: 1 !important;
  transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .anim-fade-up, .anim-fade-left, .anim-fade-right, .anim-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@keyframes nuvo-pulse {
  0%, 100% { opacity: 1; text-shadow: 0 0 30px rgba(5,150,105,0.4); }
  50%       { opacity: 0.65; text-shadow: 0 0 60px rgba(5,150,105,0.7); }
}

@keyframes nuvo-spin { to { transform: rotate(360deg); } }

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

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { order: -1; max-width: 240px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; gap: 52px; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .nuvo-featured { grid-template-columns: 1fr; padding: 32px; }
  .nuvo-featured-right { flex-direction: row; justify-content: flex-start; gap: 20px; margin-top: 28px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.07); align-items: center; }
  .nuvos-features-grid { grid-template-columns: 1fr 1fr; }
  .teaser-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 680px) {
  :root { --section-pad: 64px; }

  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; gap: 16px; }
  .nav-links { display: none; }

  /* Hero */
  .hero { padding: 100px 0 64px; min-height: auto; }
  .hero-inner { gap: 32px; text-align: center; }
  .hero-image { max-width: 180px; margin: 0 auto; }
  .hero-eyebrow { justify-content: center; }
  .hero-desc { font-size: 15px; margin: 0 auto 32px; }
  .hero-cta { justify-content: center; }
  .hero-badge { display: none; }

  /* About */
  .about-text h2 { font-size: 26px; }
  .about-text p { font-size: 14px; }
  .pillar-list li { font-size: 14px; padding: 16px 0; }

  /* Philosophy */
  .philosophy-card { padding: 28px 24px; }
  .philosophy-card h3 { font-size: 17px; }
  .philosophy-card p { font-size: 13px; }

  /* Content */
  .content-grid { grid-template-columns: 1fr; gap: 12px; }
  .content-card { padding: 24px 20px; }

  /* Products */
  .ebook-card { flex-direction: column; }
  .ebook-cover { width: 100%; padding: 20px 32px; max-height: 260px; }
  .ebook-cover img { max-height: 220px; width: auto; margin: 0 auto; }
  .ebook-body { padding: 24px 20px; }
  .ebook-body h3 { font-size: 20px; }
  .products-grid { grid-template-columns: 1fr; gap: 12px; }
  .product-card { padding: 22px 20px; }
  .nuvo-featured { padding: 24px 20px; }
  .nuvo-title { font-size: 30px; }

  /* Teaser */
  .nuvos-teaser { padding: 64px 0; }
  .teaser-title { font-size: 30px; }
  .app-mockup { font-size: 13px; }

  /* Nuvos section */
  .nuvos-features-grid { grid-template-columns: 1fr; }
  .nuvos-feat { padding: 24px 20px; }
  .nuvos-hero-title { font-size: 56px; }

  /* Waitlist */
  .nuvos-form { flex-direction: column; align-items: stretch; }
  .nuvos-form .newsletter-input { max-width: 100%; }
  .btn-nuvos { justify-content: center; }

  /* Footer */
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-left { flex-direction: column; align-items: flex-start; gap: 8px; }
}
