@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500&display=swap');

:root {
  --cream: #F8F4F0;
  --cream-dark: #F0E8DF;
  --brown: #4A3728;
  --brown-mid: #6B5344;
  --brown-soft: #8B7355;
  --tan: #C69376;
  --tan-light: #D9B99B;
  --dark: #0a0908;
  --dark-2: #141210;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--cream);
  color: var(--brown);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.font-display { font-family: 'Cormorant Garamond', Georgia, serif; }

/* Aurora + floating orbs */
.aurora-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(198,147,118,0.14), transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 10%, rgba(217,185,155,0.2), transparent 50%),
    radial-gradient(ellipse 70% 55% at 50% 100%, rgba(240,232,223,0.9), transparent 60%),
    var(--cream);
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.55;
}
.orb-1 {
  width: 420px; height: 420px;
  top: 8%; right: -8%;
  background: rgba(198,147,118,0.22);
  animation: orb-drift 18s ease-in-out infinite;
}
.orb-2 {
  width: 320px; height: 320px;
  bottom: 12%; left: -6%;
  background: rgba(217,185,155,0.28);
  animation: orb-drift 22s ease-in-out infinite reverse;
}
@keyframes orb-drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-24px, 18px); }
}

.nav-pill {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  width: calc(100% - 2rem);
  max-width: 1100px;
  transition: all 0.4s var(--ease);
}

.nav-pill-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0.55rem 0.55rem 1.1rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.nav-pill.light .nav-pill-inner {
  background: rgba(255,255,255,0.78);
  border-color: rgba(255,255,255,0.9);
  box-shadow: 0 4px 24px rgba(74,55,40,0.08);
}

.logo { display: flex; align-items: center; gap: 0.55rem; text-decoration: none; }
.logo-mark {
  width: 2rem; height: 2rem;
  border-radius: 0.55rem;
  background: linear-gradient(135deg, var(--tan), #8B5E42);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: 0.65rem;
}
.logo-text { font-weight: 700; font-size: 0.92rem; letter-spacing: -0.02em; color: white; }
.nav-pill.light .logo-text { color: var(--brown); }

.nav-pill-links { display: flex; align-items: center; gap: 0.15rem; }
.nav-pill-links a {
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 0.4rem 0.85rem;
  border-radius: 9999px;
  transition: all 0.2s;
}
.nav-pill-links a:hover { background: rgba(255,255,255,0.1); color: white; }
.nav-pill.light .nav-pill-links a { color: var(--brown-mid); }
.nav-pill.light .nav-pill-links a:hover { background: var(--cream-dark); color: var(--brown); }

.nav-pill-cta {
  background: white !important;
  color: var(--brown) !important;
  font-weight: 600 !important;
}
.nav-pill.light .nav-pill-cta {
  background: var(--brown) !important;
  color: white !important;
}

.menu-btn {
  display: none;
  width: 2.25rem; height: 2.25rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: white;
  cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-pill.light .menu-btn { color: var(--brown); border-color: rgba(74,55,40,0.12); background: transparent; }

.mobile-nav {
  display: none;
  margin-top: 0.5rem;
  padding: 0.65rem;
  border-radius: 1.1rem;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block; padding: 0.65rem 1rem;
  color: var(--brown); text-decoration: none;
  font-size: 0.875rem; font-weight: 500; border-radius: 0.6rem;
}
.mobile-nav a:hover { background: var(--cream-dark); }

@media (max-width: 900px) {
  .nav-pill-links { display: none; }
  .menu-btn { display: flex; }
}

/* ═══════════════════════════════════════
   TOP NAV — reference layout
═══════════════════════════════════════ */
.page-home { background: var(--cream); }

/* Floating rounded stage card (frame-within-a-frame) */
.stage {
  position: relative;
  margin: 1rem;
  border-radius: 2rem;
  background: var(--cream);
  box-shadow: 0 30px 90px rgba(74,55,40,0.16), 0 4px 16px rgba(74,55,40,0.06);
  overflow: hidden;
}
@media (min-width: 768px) {
  .stage { margin: 1.5rem; border-radius: 2.5rem; }
}

.stage-section { position: relative; }

/* Content below the stage card */
.rest {
  position: relative;
  background: var(--cream);
  border-radius: 2.5rem 2.5rem 0 0;
  margin-top: 1rem;
  z-index: 5;
}
@media (min-width: 768px) {
  .rest { margin-top: 1.5rem; }
}

/* Nav inside the card (scrolls with content) */
.stage-nav {
  position: relative;
  z-index: 20;
  background: transparent;
}
.stage-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.stage-nav .logo-text { color: var(--brown); }

.top-nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.top-nav-links a {
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--brown-mid);
  padding: 0.45rem 0.85rem;
  border-radius: 9999px;
  transition: all 0.2s;
}
.top-nav-links a:hover {
  color: var(--brown);
  background: rgba(255,255,255,0.6);
}

.top-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.1rem;
  border-radius: 9999px;
  border: 1px solid rgba(74,55,40,0.18);
  background: transparent;
  color: var(--brown);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-outline:hover {
  border-color: var(--tan);
  background: rgba(255,255,255,0.5);
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.1rem;
  border-radius: 9999px;
  background: var(--brown);
  color: white;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-store:hover {
  background: #3D2E24;
  transform: translateY(-1px);
}

.stage-nav .menu-btn {
  display: none;
  border-color: rgba(74,55,40,0.12);
  color: var(--brown);
  background: transparent;
}

.stage-nav .mobile-nav {
  max-width: 1280px;
  margin: 0 1.25rem 0.5rem;
}

@media (max-width: 1024px) {
  .top-nav-links { display: none; }
  .btn-outline { display: none; }
  .stage-nav .menu-btn { display: flex; }
}
@media (max-width: 480px) {
  .btn-store span { display: none; }
  .btn-store { padding: 0.55rem 0.75rem; }
}

/* ═══════════════════════════════════════
   HERO — large central portrait, overlapping headline
═══════════════════════════════════════ */
.nuve-hero {
  padding: 0.5rem 2rem 0;
  background: transparent;
  overflow: hidden;
}

.nuve-hero-grid {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  min-height: min(76vh, 700px);
  display: flex;
  align-items: center;
}

/* Center portrait — large, behind text */
.nuve-hero-center {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  z-index: 1;
  pointer-events: none;
}

.portrait-wrap {
  position: relative;
  width: min(48%, 540px);
  height: 100%;
  will-change: transform;
}

.portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 96%);
  mask-image: linear-gradient(to bottom, black 60%, transparent 96%);
  transition: mask-image 0.6s var(--ease), -webkit-mask-image 0.6s var(--ease);
}

/* Left text — overlaps portrait */
.nuve-hero-left {
  position: relative;
  z-index: 3;
  max-width: 30rem;
  margin-right: auto;
  padding-bottom: 2rem;
}

.nuve-hero-left h1 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(2.5rem, 5.2vw, 4.5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--brown);
  margin: 1.1rem 0 1.1rem;
}

.nuve-hero-left p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--brown-soft);
  max-width: 18rem;
  margin-bottom: 1.6rem;
}

/* Right stats — clean, no boxes */
.nuve-hero-right {
  position: relative;
  z-index: 3;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 1.85rem;
  text-align: left;
}

.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.hero-stat-icon {
  width: 2.75rem; height: 2.75rem;
  border: none;
  background: none;
  display: flex; align-items: center; justify-content: center;
  color: var(--tan);
  flex-shrink: 0;
  opacity: 0.85;
}

.hero-stat-row strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.hero-stat-row span {
  font-size: 0.8rem;
  color: var(--brown-soft);
  line-height: 1.35;
}

@media (max-width: 1024px) {
  .nuve-hero { padding-top: 1rem; }
  .nuve-hero-grid {
    flex-direction: column;
    min-height: auto;
    gap: 1.5rem;
    padding-bottom: 1rem;
  }
  .nuve-hero-center {
    position: relative;
    order: 1;
    height: 360px;
    align-items: stretch;
  }
  .portrait-wrap { width: min(280px, 80%); height: 360px; margin: 0 auto; }
  .nuve-hero-left {
    order: 0;
    text-align: center;
    margin: 0 auto;
    max-width: 100%;
    padding-bottom: 0;
  }
  .nuve-hero-left p { margin-left: auto; margin-right: auto; }
  .trust-pill { margin: 0 auto; }
  .nuve-hero-right {
    order: 2;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.75rem;
    margin: 0 auto;
  }
  .hero-stat-row { flex-direction: column; text-align: center; max-width: 130px; }
}

@media (max-width: 640px) {
  .nuve-hero-right { gap: 1.25rem; }
  .hero-stat-row { flex-direction: row; max-width: none; width: 100%; justify-content: center; }
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.35rem 0.85rem 0.35rem 0.4rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(74,55,40,0.08);
  box-shadow: 0 4px 16px rgba(74,55,40,0.05);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--brown-mid);
}

.trust-avatars { display: flex; }
.trust-avatars span:first-child { margin-left: 0; background: linear-gradient(135deg, #E8C4B0, var(--tan)); }
.trust-avatars span:nth-child(2) { background: linear-gradient(135deg, var(--brown-mid), var(--brown)); }
.trust-avatars span:nth-child(3) { background: linear-gradient(135deg, #D9B99B, #A67B5F); }

.btn-analyze {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 1.6rem;
  border-radius: 0.85rem;
  background: linear-gradient(135deg, var(--tan-light), var(--tan));
  border: none;
  color: white;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.3s var(--ease);
  box-shadow: 0 10px 28px rgba(198,147,118,0.3);
}
.btn-analyze:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(198,147,118,0.42);
}

/* Scan sweep line */
.scan-sweep {
  position: absolute;
  left: 8%; right: 8%;
  height: 2px;
  top: 12%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.9) 20%, rgba(198,147,118,0.9) 50%, rgba(255,255,255,0.9) 80%, transparent);
  box-shadow: 0 0 18px rgba(198,147,118,0.7), 0 0 40px rgba(255,255,255,0.3);
  opacity: 0;
  z-index: 4;
  pointer-events: none;
  animation: scan-sweep 3.2s var(--ease) 1s infinite;
}

@keyframes scan-sweep {
  0% { top: 12%; opacity: 0; }
  8% { opacity: 1; }
  85% { opacity: 1; }
  100% { top: 72%; opacity: 0; }
}

.scan-grid {
  position: absolute;
  inset: 5% 10% 20%;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}
body.hero-ready .scan-grid {
  animation: grid-fade 1.2s var(--ease) 0.5s forwards;
}
@keyframes grid-fade {
  to { opacity: 1; }
}

.scan-box {
  position: absolute;
  border: 1px solid rgba(255,255,255,0);
  border-radius: 2px;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.92);
  z-index: 5;
}
body.hero-ready .scan-box {
  animation: scan-box-in 0.7s var(--ease) forwards;
  animation-delay: calc(1.4s + var(--scan) * 0.45s);
}

@keyframes scan-box-in {
  0% { opacity: 0; transform: scale(0.88); border-color: rgba(255,255,255,0); }
  40% { opacity: 1; border-color: rgba(255,255,255,0.85); }
  100% { opacity: 1; transform: scale(1); border-color: rgba(255,255,255,0.75); }
}

.scan-dot {
  position: absolute;
  top: -3px; left: -3px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 8px rgba(255,255,255,0.8);
  opacity: 0;
}
body.hero-ready .scan-dot {
  animation: dot-pulse 2s ease-in-out infinite;
  animation-delay: calc(2.2s + var(--scan) * 0.45s);
}
@keyframes dot-pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); box-shadow: 0 0 8px rgba(255,255,255,0.6); }
  50% { opacity: 1; transform: scale(1.3); box-shadow: 0 0 16px rgba(198,147,118,0.9); }
}

.scan-label {
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translate(8px, -50%);
  font-size: 0.58rem;
  font-weight: 500;
  color: rgba(255,255,255,0);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
body.hero-ready .scan-label {
  animation: label-in 0.5s var(--ease) forwards;
  animation-delay: calc(1.8s + var(--scan) * 0.45s);
}
.scan-box-1 { top: 18%; left: 22%; width: 72px; height: 52px; }
.scan-box-2 { top: 34%; right: 18%; width: 88px; height: 58px; }
.scan-box-3 { bottom: 38%; left: 30%; width: 80px; height: 64px; }
.scan-box-2 .scan-label {
  left: auto;
  right: 100%;
  transform: translate(-8px, -50%);
}

/* Hero entrance sequence (CSS-driven, no JS dependency) */
.hero-seq {
  opacity: 0;
  transform: translateY(28px);
  animation: hero-seq-in 0.85s var(--ease) forwards;
  animation-delay: calc(0.15s + var(--i) * 0.12s);
}
@keyframes hero-seq-in {
  to { opacity: 1; transform: translateY(0); }
}

.portrait-wrap.hero-seq {
  animation: portrait-in 1.1s var(--ease) 0.35s forwards;
}
@keyframes portrait-in {
  0% { opacity: 0; transform: translateY(40px) scale(0.94); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Hero scroll parallax */
.nuve-hero.scrolling .nuve-hero-left,
.nuve-hero.scrolling .nuve-hero-right {
  opacity: calc(1 - var(--hero-fade, 0));
  transform: translateY(calc(var(--hero-fade, 0) * -40px));
  transition: opacity 0.1s linear, transform 0.1s linear;
}
.nuve-hero.scrolling .portrait-wrap {
  transform: translateY(calc(var(--hero-shift, 0) * -1px)) scale(calc(1 - var(--hero-fade, 0) * 0.05));
}
.nuve-hero.scrolling .portrait-wrap img {
  -webkit-mask-image: linear-gradient(to bottom, black calc(55% - var(--hero-fade, 0) * 20%), transparent 100%);
  mask-image: linear-gradient(to bottom, black calc(55% - var(--hero-fade, 0) * 20%), transparent 100%);
}

/* Right stats */
.nuve-hero-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-left: 0.5rem;
}

.hero-stat-row {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.hero-stat-icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(74,55,40,0.1);
  background: rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  color: var(--brown-mid);
  flex-shrink: 0;
}

.hero-stat-row strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.hero-stat-row span {
  font-size: 0.78rem;
  color: var(--brown-soft);
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .nuve-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  .nuve-hero-left p { margin-left: auto; margin-right: auto; }
  .trust-pill { margin: 0 auto; }
  .nuve-hero-right {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 0;
  }
  .hero-stat-row { flex-direction: column; align-items: center; text-align: center; max-width: 140px; }
}

@media (max-width: 640px) {
  .nuve-hero { padding-top: 5.5rem; min-height: auto; }
  .portrait-wrap { max-height: 480px; }
  .nuve-hero-right { flex-direction: column; align-items: center; }
}

/* ═══════════════════════════════════════
   SPLIT CARD — AI Guidance
═══════════════════════════════════════ */
.nuve-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  min-height: min(82vh, 720px);
  transform: scale(0.985);
  opacity: 0;
  transition: transform 1s var(--ease), opacity 0.8s var(--ease);
}
.nuve-split.in-view {
  transform: scale(1);
  opacity: 1;
}

.nuve-split-visual {
  position: relative;
  overflow: hidden;
  background: #1a1512;
  min-height: 360px;
}
.nuve-split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transform: scale(1);
  transition: transform 0.1s linear;
}
.nuve-split.in-view .nuve-split-visual img {
  animation: img-kenburns 14s var(--ease) forwards;
}
@keyframes img-kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.trust-avatars span {
  width: 1.35rem; height: 1.35rem;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -0.4rem;
  background: linear-gradient(135deg, var(--tan-light), var(--tan));
  opacity: 0;
  transform: scale(0);
  animation: avatar-pop 0.4s var(--ease) forwards;
}
.trust-avatars span:nth-child(1) { animation-delay: 0.5s; }
.trust-avatars span:nth-child(2) { animation-delay: 0.62s; }
.trust-avatars span:nth-child(3) { animation-delay: 0.74s; }
@keyframes avatar-pop {
  0% { opacity: 0; transform: scale(0); }
  70% { transform: scale(1.15); }
  100% { opacity: 1; transform: scale(1); }
}

.hotspot {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  pointer-events: none;
  opacity: 0;
  transform: translateY(6px);
}
.nuve-split.in-view .hotspot {
  animation: hotspot-in 0.7s var(--ease) forwards;
  animation-delay: calc(0.5s + var(--h) * 0.35s);
}
@keyframes hotspot-in {
  0% { opacity: 0; transform: translateY(6px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hotspot-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.25), 0 0 12px rgba(255,255,255,0.8);
  flex-shrink: 0;
  transform: scale(0);
}
.nuve-split.in-view .hotspot-dot {
  animation: hotspot-dot 0.5s var(--ease) forwards;
  animation-delay: calc(0.55s + var(--h) * 0.35s);
}
@keyframes hotspot-dot {
  0% { transform: scale(0); }
  70% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

.hotspot-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0);
  white-space: nowrap;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.nuve-split.in-view .hotspot-label {
  animation: hotspot-label 0.4s var(--ease) forwards;
  animation-delay: calc(0.85s + var(--h) * 0.35s);
}
@keyframes hotspot-label {
  to { color: rgba(255,255,255,0.95); }
}
.hotspot-1 { top: 24%; left: 40%; }
.hotspot-2 { top: 52%; left: 30%; }
.hotspot-3 { bottom: 24%; right: 26%; }

.nuve-split-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 3.5rem;
  background: linear-gradient(180deg, rgba(217,185,155,0.4) 0%, rgba(248,244,240,0.6) 50%, white 100%);
  gap: 0.5rem;
}

.split-block { width: 100%; }

.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: calc(var(--d, 0) * 0.12s);
}
.nuve-split.in-view .reveal-up {
  opacity: 1;
  transform: translateY(0);
}

.nuve-split-copy h2 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(1.85rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.nuve-split-copy p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--brown-soft);
  max-width: 24rem;
}

.scroll-cue {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.scroll-cue span {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--tan), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

@media (max-width: 768px) {
  .nuve-split { grid-template-columns: 1fr; }
  .nuve-split-visual { min-height: 300px; }
}

/* ═══════════════════════════════════════
   MANIFESTO — floating tags
═══════════════════════════════════════ */
.nuve-manifesto {
  position: relative;
  padding: 7rem 2rem;
  background: transparent;
  text-align: center;
  overflow: hidden;
  min-height: min(70vh, 620px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.manifesto-text {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(1.6rem, 4vw, 3.1rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.03em;
  max-width: 44rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.m-line {
  display: block;
  color: rgba(74,55,40,0.2);
  transition: color 0.15s linear;
}
.nuve-manifesto.in-view .m-line {
  color: rgba(74,55,40,0.55);
}
.m-line.revealed {
  color: var(--brown) !important;
}

.float-tag {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.95rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(74,55,40,0.06);
  box-shadow: 0 8px 28px rgba(74,55,40,0.1);
  font-size: 0.72rem;
  font-weight: 600;
  z-index: 2;
  opacity: 0;
  transform: scale(0.6) translateY(12px);
  will-change: transform;
  --px: 0px;
  --py: 0px;
}
.float-tag em {
  font-style: normal;
  font-size: 0.8rem;
}

.nuve-manifesto.in-view .float-tag {
  animation: tag-pop 0.65s var(--ease) forwards, tag-float 5s ease-in-out infinite;
  animation-delay: calc(0.3s + var(--t) * 0.18s), calc(1s + var(--t) * 0.5s);
}

@keyframes tag-pop {
  0% { opacity: 0; transform: scale(0.5) translateY(16px); }
  70% { transform: scale(1.08) translateY(-4px); }
  100% { opacity: 1; transform: translate(var(--px), var(--py)); }
}

.tag-1 { top: 10%; left: 6%; color: var(--tan); background: rgba(217,185,155,0.25); }
.tag-2 { top: 36%; left: 2%; color: #5A8A62; background: rgba(122,158,126,0.15); }
.tag-3 { top: 52%; right: 10%; color: #B86A5C; background: rgba(196,122,106,0.12); }
.tag-4 { bottom: 12%; right: 6%; color: #A67B5F; background: rgba(198,147,118,0.18); }

@keyframes tag-float {
  0%, 100% { transform: translate(var(--px), calc(var(--py) + 0px)); }
  50% { transform: translate(var(--px), calc(var(--py) + -10px)); }
}

@media (max-width: 768px) {
  .nuve-manifesto { padding: 3.5rem 1.25rem 4rem; }
  .float-tag { font-size: 0.62rem; padding: 0.3rem 0.65rem; }
  .tag-1 { top: 6%; left: 4%; }
  .tag-2 { top: 22%; left: 2%; }
  .tag-3 { top: auto; bottom: 28%; right: 4%; }
  .tag-4 { bottom: 8%; right: 4%; }
}

/* ═══════════════════════════════════════
   SITE NAV — glass pill (all pages)
═══════════════════════════════════════ */
.hero-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 0.85rem 1rem;
  pointer-events: none;
}

.hero-nav-shell {
  position: relative;
  pointer-events: auto;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0.6rem 0.5rem 0.95rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.42);
  border: 1px solid rgba(255,255,255,0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow:
    0 8px 32px rgba(74,55,40,0.08),
    inset 0 1px 0 rgba(255,255,255,0.85);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}

.hero-nav-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(198,147,118,0.35), rgba(255,255,255,0.25), rgba(125,211,192,0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.hero-nav.scrolled .hero-nav-shell {
  background: rgba(255,255,255,0.78);
  border-color: rgba(255,255,255,0.92);
  box-shadow:
    0 14px 44px rgba(74,55,40,0.12),
    inset 0 1px 0 rgba(255,255,255,0.95);
}

.hero-nav-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--brown);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.hero-nav-links {
  display: none;
  align-items: center;
  gap: 0.2rem;
  position: relative;
  z-index: 1;
}

.hero-nav-links a {
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--brown-mid);
  padding: 0.45rem 0.85rem;
  border-radius: 9999px;
  transition: color 0.2s, background 0.2s;
}

.hero-nav-links a:hover {
  color: var(--brown);
  background: rgba(255,255,255,0.55);
}

.hero-nav-actions {
  display: none;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem;
  border-radius: 9999px;
  background: rgba(74, 55, 40, 0.06);
  border: 1px solid rgba(74, 55, 40, 0.1);
  gap: 0.15rem;
}

.lang-btn {
  min-width: 2.1rem;
  padding: 0.3rem 0.55rem;
  border: none;
  border-radius: 9999px;
  background: transparent;
  color: rgba(74, 55, 40, 0.55);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.lang-btn:hover {
  color: var(--brown, #4A3728);
}

.lang-btn.active {
  background: #fff;
  color: var(--brown, #4A3728);
  box-shadow: 0 1px 4px rgba(74, 55, 40, 0.12);
}

.hero-nav-mobile .lang-switch {
  margin: 0.35rem 0 0.75rem;
  align-self: flex-start;
}

.btn-nav-outline {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(74,55,40,0.14);
  background: rgba(255,255,255,0.35);
  color: var(--brown);
  font-size: 0.76rem;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.btn-nav-outline:hover {
  border-color: rgba(198,147,118,0.45);
  background: rgba(255,255,255,0.7);
  box-shadow: 0 0 16px rgba(198,147,118,0.15);
}

.btn-nav-dark {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--brown), #2E221A);
  color: white;
  font-size: 0.76rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(74,55,40,0.22);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-nav-dark:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(74,55,40,0.3);
}

.hero-nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(74,55,40,0.1);
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--brown);
  cursor: pointer;
  margin-left: auto;
  position: relative;
  z-index: 1;
  transition: background 0.2s, border-color 0.2s;
}

.hero-nav-menu:hover {
  background: rgba(255,255,255,0.75);
  border-color: rgba(198,147,118,0.35);
}

.hero-nav-mobile {
  display: none;
  pointer-events: auto;
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 1rem;
  right: 1rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.65rem;
  border-radius: 1.1rem;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.9);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  box-shadow: 0 20px 56px rgba(74,55,40,0.14);
}

.hero-nav-mobile.open { display: block; }

.hero-nav-mobile a {
  display: block;
  padding: 0.65rem 0.85rem;
  color: var(--brown);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.65rem;
  transition: background 0.2s;
}

.hero-nav-mobile a:hover {
  background: rgba(248,244,240,0.9);
}

@media (min-width: 900px) {
  .hero-nav {
    padding: 1rem 1.5rem;
  }

  .hero-nav-shell {
    padding: 0.55rem 0.7rem 0.55rem 1.1rem;
  }

  .hero-nav-links { display: flex; }
  .hero-nav-actions { display: flex; }
  .hero-nav-menu { display: none; }
}

/* ═══════════════════════════════════════
   HERO — futuristic editorial split
═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100dvh;
  padding: 5.5rem 1.25rem 2.5rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 85% 75% at 12% 48%, rgba(255,255,255,0.96) 0%, transparent 52%),
    radial-gradient(ellipse 55% 70% at 88% 42%, rgba(198,147,118,0.22) 0%, transparent 50%),
    radial-gradient(ellipse 40% 60% at 92% 70%, rgba(125,211,192,0.08) 0%, transparent 55%),
    linear-gradient(118deg, #FBF8F5 0%, #F0E6DC 36%, #3D3028 68%, #0C0A09 100%);
}

.hero-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(74,55,40,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,55,40,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: linear-gradient(90deg, black 0%, black 48%, transparent 85%);
  mask-image: linear-gradient(90deg, black 0%, black 48%, transparent 85%);
  animation: hero-mesh-drift 28s linear infinite;
}

@keyframes hero-mesh-drift {
  to { background-position: 48px 48px; }
}

.hero-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    radial-gradient(circle at 18% 42%, rgba(198,147,118,0.14) 0%, transparent 45%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23C69376' stroke-opacity='0.06'%3E%3Cpath d='M30 4c0 0-8 10-8 18s8 18 8 18 8-10 8-18-8-18-8-18z'/%3E%3Cpath d='M30 56c0 0-8-10-8-18s8-18 8-18 8 10 8 18-8 18-8 18z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: auto, 60px 60px;
  z-index: 0;
  -webkit-mask-image: linear-gradient(90deg, black 0%, transparent 70%);
  mask-image: linear-gradient(90deg, black 0%, transparent 70%);
}

.hero-glow-orb {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 58%;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 72% 38%, rgba(198,147,118,0.35) 0%, transparent 55%),
    radial-gradient(ellipse 50% 45% at 85% 65%, rgba(125,211,192,0.12) 0%, transparent 50%);
  z-index: 1;
}

.hero-beam {
  position: absolute;
  top: -20%;
  left: 38%;
  width: 1px;
  height: 140%;
  background: linear-gradient(180deg, transparent, rgba(198,147,118,0.35), transparent);
  transform: rotate(18deg);
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
  animation: hero-beam-pulse 5s ease-in-out infinite;
}

@keyframes hero-beam-pulse {
  0%, 100% { opacity: 0.25; }
  50% { opacity: 0.65; }
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 36rem;
}

@media (min-width: 960px) {
  .hero {
    padding: 6.5rem 2rem 3rem;
    align-items: center;
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: clamp(2rem, 4vw, 3.5rem);
    min-height: calc(100dvh - 9.5rem);
  }

  .hero-content {
    flex: 1 1 48%;
    max-width: 34rem;
  }

  .hero-glass {
    padding: 2.35rem 2.1rem;
    border-radius: 1.5rem;
  }
}

.hero-glass {
  position: relative;
  padding: 1.85rem 1.65rem;
  border-radius: 1.35rem;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.72) 0%, rgba(255,255,255,0.38) 100%);
  border: 1px solid rgba(255,255,255,0.55);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow:
    0 28px 70px rgba(74,55,40,0.1),
    0 0 0 1px rgba(125,211,192,0.08) inset,
    inset 0 1px 0 rgba(255,255,255,0.9);
  overflow: hidden;
}

.hero-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(125,211,192,0.55), rgba(255,255,255,0.15) 40%, rgba(198,147,118,0.45) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
}

.hero-glass-frame {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-glass-shine {
  position: absolute;
  top: 0;
  left: -60%;
  width: 45%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-18deg);
  animation: hero-glass-shine 7s ease-in-out infinite;
}

@keyframes hero-glass-shine {
  0%, 100% { left: -60%; opacity: 0; }
  45% { opacity: 0.7; }
  55% { left: 120%; opacity: 0.7; }
  70% { opacity: 0; }
}

.hero-glass-corner {
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: rgba(74,55,40,0.22);
  border-style: solid;
  opacity: 0;
}

body.hero-ready .hero-glass-corner {
  animation: hero-glass-corner-in 0.6s var(--ease) forwards;
}

.hero-glass-corner-tl { top: 12px; left: 12px; border-width: 1.5px 0 0 1.5px; animation-delay: 0.25s; }
.hero-glass-corner-tr { top: 12px; right: 12px; border-width: 1.5px 1.5px 0 0; animation-delay: 0.35s; }
.hero-glass-corner-bl { bottom: 12px; left: 12px; border-width: 0 0 1.5px 1.5px; animation-delay: 0.45s; }
.hero-glass-corner-br { bottom: 12px; right: 12px; border-width: 0 1.5px 1.5px 0; animation-delay: 0.55s; }

@keyframes hero-glass-corner-in {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}

.hero-meta {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.35rem;
}

.hero-version {
  flex-shrink: 0;
  padding: 0.28rem 0.55rem;
  border-radius: 0.35rem;
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--brown-mid);
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(74,55,40,0.08);
}

body.hero-ready .hero-glass {
  animation: hero-glass-rise 1s var(--ease) 0.15s both;
}

body.hero-ready .hero-meta,
body.hero-ready .hero-content h1,
body.hero-ready .hero-lead,
body.hero-ready .hero-pills,
body.hero-ready .hero-actions,
body.hero-ready .hero-stats {
  animation: hero-content-in 0.8s var(--ease) both;
}

body.hero-ready .hero-meta { animation-delay: 0.2s; }
body.hero-ready .hero-content h1 { animation-delay: 0.32s; }
body.hero-ready .hero-lead { animation-delay: 0.44s; }
body.hero-ready .hero-pills { animation-delay: 0.54s; }
body.hero-ready .hero-actions { animation-delay: 0.64s; }
body.hero-ready .hero-stats { animation-delay: 0.76s; }

@keyframes hero-content-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-glass-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.hero-ready .hero-glass,
  body.hero-ready .hero-meta,
  body.hero-ready .hero-content h1,
  body.hero-ready .hero-lead,
  body.hero-ready .hero-pills,
  body.hero-ready .hero-actions,
  body.hero-ready .hero-stats,
  body.hero-ready .hero-glass-corner,
  .hero-glass-shine {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Copy */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown-mid);
  margin: 0;
  padding: 0.38rem 0.8rem 0.38rem 0.5rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(125,211,192,0.28);
  box-shadow: 0 0 20px rgba(125,211,192,0.08);
}
.hero-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.5);
  animation: hero-live-pulse 2s ease-in-out infinite;
}

@keyframes hero-live-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.45); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

.hero-content h1 {
  position: relative;
  z-index: 2;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(2.35rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: var(--brown);
  margin-bottom: 1.15rem;
  max-width: 14em;
}
.hero-content h1 em {
  font-style: normal;
  font-weight: 800;
  background: linear-gradient(120deg, var(--tan) 0%, #A67B5F 35%, #7DD3C0 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: hero-text-shimmer 6s ease-in-out infinite;
}

@keyframes hero-text-shimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.hero-lead {
  position: relative;
  z-index: 2;
  font-size: 1.05rem;
  line-height: 1.72;
  color: rgba(74,55,40,0.78);
  max-width: 30rem;
  margin-bottom: 1.35rem;
}

.hero-pills {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.hero-pills li {
  padding: 0.38rem 0.72rem;
  border-radius: 9999px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--brown);
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(74,55,40,0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.hero-pills li:hover {
  border-color: rgba(125,211,192,0.45);
  box-shadow: 0 0 16px rgba(125,211,192,0.12);
}

.hero-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.65rem;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.92rem 1.75rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #1A1512 0%, var(--brown) 55%, #2E221A 100%);
  color: white;
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow:
    0 14px 36px rgba(74,55,40,0.28),
    0 0 0 1px rgba(255,255,255,0.08) inset,
    0 0 28px rgba(125,211,192,0.15);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.hero-btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.12) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.5s var(--ease);
}

.hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(74,55,40,0.32), 0 0 36px rgba(198,147,118,0.35);
}

.hero-btn-primary:hover::after {
  transform: translateX(100%);
}

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.92rem 1.55rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.45);
  border: 1px solid rgba(74,55,40,0.12);
  color: var(--brown);
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 0.25s, background 0.25s, transform 0.25s, box-shadow 0.25s;
}

.hero-btn-secondary:hover {
  border-color: rgba(125,211,192,0.55);
  background: rgba(255,255,255,0.75);
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(125,211,192,0.18);
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  max-width: 32rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(74,55,40,0.08);
}

@media (max-width: 520px) {
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

.hero-stats .hero-stat {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.75rem 0.65rem;
  border-radius: 0.85rem;
  background: rgba(255,255,255,0.48);
  border: 1px solid rgba(255,255,255,0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: left;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}

.hero-stats .hero-stat:hover {
  border-color: rgba(125,211,192,0.35);
  transform: translateY(-2px);
}

.hero-stat-icon {
  flex-shrink: 0;
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(125,211,192,0.9);
  padding-top: 0.2rem;
}

.hero-stats .hero-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--tan), rgba(125,211,192,0.85));
}

.hero-stats .hero-stat strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--brown);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.hero-stats .hero-stat span {
  display: block;
  font-size: 0.58rem;
  line-height: 1.35;
  color: var(--brown-mid);
  margin-top: 0.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* Visual — AI scan stage */
.hero-visual {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 26rem;
  margin: 0 auto;
  flex-shrink: 0;
  perspective: 1200px;
}

.hero-scan-stage {
  position: relative;
  width: 100%;
  min-height: min(52vh, 480px);
  transform-style: preserve-3d;
  transition: transform 0.35s var(--ease);
  will-change: transform;
}

.hero-scan-aura {
  position: absolute;
  inset: -12%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(125,211,192,0.18) 0%, rgba(198,147,118,0.12) 40%, transparent 68%);
  filter: blur(32px);
  z-index: 0;
  animation: hero-aura-pulse 5s ease-in-out infinite;
}

@keyframes hero-aura-pulse {
  0%, 100% { opacity: 0.55; transform: scale(0.96); }
  50% { opacity: 1; transform: scale(1.04); }
}

.hero-scan-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 108%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(125,211,192,0.2);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  animation: hero-orbit-spin 28s linear infinite;
}

.hero-scan-orbit-2 {
  width: 122%;
  border-color: rgba(198,147,118,0.14);
  border-style: dashed;
  animation-duration: 40s;
  animation-direction: reverse;
}

body.hero-ready .hero-scan-orbit {
  animation: hero-orbit-fade 0.9s var(--ease) 0.5s forwards, hero-orbit-spin 28s linear 1.4s infinite;
}

body.hero-ready .hero-scan-orbit-2 {
  animation: hero-orbit-fade 0.9s var(--ease) 0.7s forwards, hero-orbit-spin 40s linear 1.6s infinite reverse;
}

@keyframes hero-orbit-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes hero-orbit-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-portrait {
  position: relative;
  z-index: 2;
  margin: 0;
  width: 100%;
  aspect-ratio: 681 / 758;
  max-height: min(72vh, 620px);
  border-radius: 1.35rem;
  overflow: hidden;
  background: #050505;
  box-shadow:
    0 32px 80px rgba(0,0,0,0.45),
    0 0 0 1px rgba(255,255,255,0.08),
    0 0 60px rgba(125,211,192,0.12);
}

body.hero-ready .hero-portrait {
  animation: hero-portrait-in 1s var(--ease) 0.2s both;
}

@keyframes hero-portrait-in {
  from {
    opacity: 0.6;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  animation: hero-portrait-breathe 10s ease-in-out infinite;
}

@keyframes hero-portrait-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.015); }
}

.hero-scan-frame {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  border-radius: 1.35rem;
  overflow: hidden;
}

.hero-scan-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0;
  -webkit-mask-image: radial-gradient(ellipse 80% 85% at 50% 45%, black 20%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 85% at 50% 45%, black 20%, transparent 75%);
}

body.hero-ready .hero-scan-grid {
  animation: hero-grid-in 1.2s var(--ease) 0.6s forwards;
}

@keyframes hero-grid-in {
  to { opacity: 0.55; }
}

.hero-scan-beam {
  position: absolute;
  left: 6%;
  right: 6%;
  height: 2px;
  top: 14%;
  background: linear-gradient(90deg, transparent, rgba(125,211,192,0.25) 18%, rgba(125,211,192,0.95) 50%, rgba(125,211,192,0.25) 82%, transparent);
  box-shadow: 0 0 28px rgba(125,211,192,0.65), 0 0 8px rgba(255,255,255,0.4);
  opacity: 0;
  z-index: 5;
}

body.hero-ready .hero-scan-beam {
  animation: hero-scan-sweep 3.8s ease-in-out 1s infinite;
}

@keyframes hero-scan-sweep {
  0%, 100% { top: 10%; opacity: 0; }
  6% { opacity: 1; }
  50% { top: 90%; opacity: 1; }
  94% { opacity: 1; }
  100% { top: 10%; opacity: 0; }
}

.hero-corner {
  position: absolute;
  width: 32px;
  height: 32px;
  border-color: rgba(125,211,192,0.85);
  border-style: solid;
  opacity: 0;
  filter: drop-shadow(0 0 6px rgba(125,211,192,0.5));
}

body.hero-ready .hero-corner {
  animation: hero-corner-in 0.7s var(--ease) forwards;
}

.hero-corner-tl { top: 10px; left: 10px; border-width: 2px 0 0 2px; animation-delay: 0.5s; }
.hero-corner-tr { top: 10px; right: 10px; border-width: 2px 2px 0 0; animation-delay: 0.62s; }
.hero-corner-bl { bottom: 10px; left: 10px; border-width: 0 0 2px 2px; animation-delay: 0.74s; }
.hero-corner-br { bottom: 10px; right: 10px; border-width: 0 2px 2px 0; animation-delay: 0.86s; }

@keyframes hero-corner-in {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}

.hero-live-tag {
  position: absolute;
  top: -0.65rem;
  right: -0.35rem;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.8rem;
  border-radius: 9999px;
  background: rgba(10,9,8,0.82);
  border: 1px solid rgba(125,211,192,0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

body.hero-ready .hero-live-tag {
  animation: hero-tag-in 0.7s var(--ease) 1.1s forwards;
}

@keyframes hero-tag-in {
  to { opacity: 1; transform: translateY(0); }
}

.hero-live-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34,197,94,0.8);
  animation: hero-live-pulse 2s ease-in-out infinite;
}

@media (min-width: 960px) {
  .hero-visual {
    flex: 1 1 46%;
    max-width: 30rem;
    width: auto;
  }

  .hero-portrait {
    max-height: min(78vh, 660px);
  }
}

@media (max-width: 959px) {
  .hero-visual {
    max-width: 20rem;
  }

  .hero-portrait {
    max-height: min(56vh, 500px);
  }

  .hero-live-tag {
    right: 0;
    top: -0.5rem;
    font-size: 0.54rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-portrait,
  .hero-portrait img,
  .hero-scan-beam,
  .hero-scan-orbit,
  .hero-scan-aura,
  .hero-corner,
  .hero-live-tag,
  .hero-scan-grid {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-scan-stage {
    transition: none;
  }
}

/* ═══════════════════════════════════════
   HERO — legacy (unused)
═══════════════════════════════════════ */
.hero-nuve {
  position: relative;
  min-height: 100dvh;
  padding: 5.5rem 1.25rem 3rem;
  display: flex;
  align-items: center;
}

.hero-nuve-grid {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-nuve {
    padding: 6.5rem 2rem 4rem;
  }
  .hero-nuve-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 380px) minmax(0, 220px);
    gap: 2rem 2.5rem;
    align-items: center;
  }
}

/* Left column */
.hero-nuve-left h1 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--brown);
  margin-bottom: 1.25rem;
}

.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
  padding: 0.35rem 0.85rem 0.35rem 0.4rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(74,55,40,0.08);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--brown-mid);
}

.hero-trust-avatars {
  display: flex;
}
.hero-trust-avatars span {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -0.4rem;
  background: linear-gradient(135deg, var(--tan-light), var(--tan));
}
.hero-trust-avatars span:first-child { margin-left: 0; }
.hero-trust-avatars span:nth-child(2) { background: linear-gradient(135deg, #D4B896, #A67B5F); }
.hero-trust-avatars span:nth-child(3) { background: linear-gradient(135deg, #C9A88E, #8B7355); }

.hero-nuve-sub {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--brown-soft);
  max-width: 22rem;
  margin-bottom: 2rem;
}

.hero-nuve-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.75rem;
  border-radius: 0.55rem;
  background: rgba(217,185,155,0.45);
  border: 1px solid rgba(198,147,118,0.25);
  color: var(--brown);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.hero-nuve-cta:hover {
  background: rgba(217,185,155,0.65);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(198,147,118,0.2);
}

/* Center — video / portrait */
.hero-nuve-center {
  order: -1;
  display: flex;
  justify-content: center;
}

@media (min-width: 1024px) {
  .hero-nuve-center { order: 0; }
}

.hero-nuve-media {
  position: relative;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 3 / 4.2;
  max-height: min(520px, 62vh);
  margin: 0 auto;
}

.hero-nuve-video,
.hero-nuve-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 0;
  /* soft fade into cream bg at bottom */
  -webkit-mask-image: linear-gradient(to bottom, black 72%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 72%, transparent 100%);
}

.hero-nuve-video {
  z-index: 2;
  display: none;
}
.hero-nuve-video.is-active {
  display: block;
}
.hero-nuve-video.is-active + .hero-nuve-poster {
  opacity: 0;
  pointer-events: none;
}

.hero-nuve-poster {
  z-index: 1;
}

/* AI scan overlay boxes */
.hero-scan-ui {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.scan-box {
  position: absolute;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: 2px;
}
.scan-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 8px rgba(255,255,255,0.8);
}
.scan-label {
  position: absolute;
  left: calc(100% + 8px);
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.62rem;
  font-weight: 500;
  color: white;
  white-space: nowrap;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
  letter-spacing: 0.02em;
}

.scan-box-1 { top: 14%; left: 8%; }
.scan-box-1 .scan-dot { top: -3px; right: -3px; }

.scan-box-2 { top: 38%; left: 4%; width: 64px; height: 64px; }
.scan-box-2 .scan-dot { bottom: -3px; left: -3px; }
.scan-box-2 .scan-label { left: auto; right: calc(100% + 8px); }

.scan-box-3 { top: 22%; right: 6%; width: 58px; height: 58px; }
.scan-box-3 .scan-dot { top: -3px; left: -3px; }

/* Right column — stats */
.hero-nuve-right {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

@media (max-width: 1023px) {
  .hero-nuve-right {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem 2rem;
  }
}

.hero-stat-row {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.hero-stat-icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  color: var(--brown-soft);
  opacity: 0.55;
}
.hero-stat-icon svg { width: 100%; height: 100%; }

.hero-stat-row p {
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--brown-mid);
  max-width: 9rem;
}
.hero-stat-row strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--brown);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 0.1rem;
}

/* ═══════════════════════════════════════
   HERO — cream editorial split (legacy)
═══════════════════════════════════════ */
.hero-editorial {
  position: relative;
  min-height: 100dvh;
  padding: 6.5rem 1.25rem 3rem;
  display: flex;
  align-items: center;
}

.hero-editorial-wrap {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-editorial {
    padding: 7rem 2rem 4rem;
  }
  .hero-editorial-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}

.hero-editorial-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.9rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(198,147,118,0.28);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 1.25rem;
}
.hero-editorial-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--tan);
  box-shadow: 0 0 8px var(--tan);
}

.hero-editorial-copy h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5.5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--brown);
  margin-bottom: 1.25rem;
}
.hero-editorial-copy h1 em {
  font-style: italic;
  color: var(--tan);
  font-weight: 500;
}

.hero-editorial-copy p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--brown-soft);
  max-width: 30rem;
  margin-bottom: 1.75rem;
}

.hero-editorial-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.hero-editorial-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.hero-editorial-tags span {
  padding: 0.35rem 0.75rem;
  border-radius: 0.45rem;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.85);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--brown-mid);
}

.hero-editorial-visual {
  position: relative;
  max-width: 300px;
  margin: 0 auto;
  width: 100%;
}

.hero-editorial-card {
  position: relative;
  border-radius: 1.75rem;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  max-height: min(520px, 68vh);
  width: 100%;
  box-shadow:
    0 24px 60px rgba(74,55,40,0.16),
    0 0 0 1px rgba(255,255,255,0.6) inset;
  transition: transform 0.25s var(--ease);
}
.hero-editorial-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

@media (min-width: 1024px) {
  .hero-editorial-visual {
    max-width: 340px;
    margin: 0 0 0 auto;
  }
  .hero-editorial-card {
    max-height: min(560px, 75vh);
  }
}

/* ═══════════════════════════════════════
   HERO — MOBILE (legacy)
═══════════════════════════════════════ */
.hero-mob {
  padding: 6rem 1.25rem 2rem;
  background: var(--cream);
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.75rem;
}

.hero-mob-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.9rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(198,147,118,0.3);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tan);
  width: fit-content;
}
.hero-mob-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--tan); box-shadow: 0 0 8px var(--tan);
}

.hero-mob h1 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(2rem, 8vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--brown);
}
.hero-mob h1 em {
  font-style: normal;
  color: var(--tan);
  display: block;
  font-weight: 800;
}

.hero-mob p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--brown-soft);
  max-width: 28rem;
}

.hero-mob-actions { display: flex; flex-wrap: wrap; gap: 0.65rem; }

.hero-mob-visual {
  position: relative;
  border-radius: 1.75rem;
  overflow: hidden;
  aspect-ratio: 3/4;
  max-height: 480px;
  box-shadow: 0 24px 60px rgba(74,55,40,0.18);
}
.hero-mob-visual img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
}

.hero-mob-tags { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.hero-mob-tags span {
  padding: 0.35rem 0.75rem;
  border-radius: 0.45rem;
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.8);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--brown-mid);
}

/* ═══════════════════════════════════════
   HERO — DESKTOP futuristic
═══════════════════════════════════════ */
.hero-desk {
  display: none;
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--dark);
  overflow: hidden;
}

.hero-desk-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(198,147,118,0.18), transparent),
    radial-gradient(ellipse 40% 35% at 20% 70%, rgba(198,147,118,0.08), transparent),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(74,55,40,0.4), transparent);
}

.hero-desk-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 60% 50%, black, transparent);
}

.hero-scan-ring {
  position: absolute;
  width: 520px; height: 520px;
  top: 50%; right: 18%;
  transform: translate(0, -50%);
  border-radius: 50%;
  border: 1px solid rgba(198,147,118,0.15);
  animation: ring-spin 30s linear infinite;
}
.hero-scan-ring::before {
  content: '';
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.08);
}
.hero-scan-ring::after {
  content: '';
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  border: 1px solid rgba(198,147,118,0.06);
  animation: ring-spin 20s linear infinite reverse;
}

@keyframes ring-spin {
  to { transform: translate(0, -50%) rotate(360deg); }
}

.hero-desk-wrap {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 7rem 2.5rem 3rem;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  align-items: center;
}

/* Glass copy panel */
.hero-glass-panel {
  padding: 2.5rem;
  border-radius: 1.75rem;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow:
    0 0 0 1px rgba(198,147,118,0.08) inset,
    0 32px 80px rgba(0,0,0,0.4);
  position: relative;
  overflow: hidden;
}

.hero-glass-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198,147,118,0.5), transparent);
}

.hero-glass-panel .label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.hero-glass-panel .label::before {
  content: ''; width: 24px; height: 1px; background: var(--tan);
}

.hero-glass-panel h1 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1.25rem;
}

.hero-glass-panel h1 em {
  font-style: normal;
  color: var(--tan-light);
  display: block;
  font-weight: 800;
}

.hero-glass-panel p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2rem;
  max-width: 26rem;
}

.hero-desk-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2rem; }

.btn-glow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--tan), #A67B5F);
  color: white;
  font-weight: 600; font-size: 0.875rem;
  text-decoration: none;
  box-shadow: 0 0 30px rgba(198,147,118,0.35);
  transition: all 0.3s ease;
}
.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(198,147,118,0.55);
}

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.85);
  font-weight: 600; font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(198,147,118,0.4);
}

.hero-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.hero-stat {
  padding: 0.85rem;
  border-radius: 0.85rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  text-align: center;
}
.hero-stat strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.03em;
}
.hero-stat span {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Visual stage (legacy hero-nuve only) */
.hero-nuve .hero-stage {
  position: relative;
  height: 580px;
}

.hero-nuve .hero-portrait {
  position: absolute;
  top: 0; right: 0;
  width: 78%;
  height: 92%;
  border-radius: 2rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    0 0 60px rgba(198,147,118,0.15),
    0 40px 100px rgba(0,0,0,0.5);
  transition: transform 0.2s ease-out;
}
.hero-nuve .hero-portrait img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 18%;
}

.hero-nuve .hero-portrait .callout {
  position: absolute;
  display: flex; align-items: center; gap: 0;
  opacity: 0;
  animation: callout-in 0.7s var(--ease) forwards;
}
.callout-1 { top: 12%; left: 6%; animation-delay: 0.5s; }
.callout-2 { top: 30%; left: 4%; animation-delay: 0.75s; }
.callout-3 { bottom: 18%; right: 5%; animation-delay: 1s; flex-direction: row-reverse; }

@keyframes callout-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.callout-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: white;
  box-shadow: 0 0 10px 3px rgba(255,255,255,0.6);
  flex-shrink: 0;
}
.callout-line { width: 20px; height: 1px; background: rgba(255,255,255,0.45); }
.callout-box {
  padding: 0.45rem 0.75rem;
  border-radius: 0.45rem;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  font-size: 0.65rem;
  font-weight: 500;
  color: white;
  white-space: nowrap;
}

.hero-hud {
  position: absolute;
  bottom: 6%; left: 2%;
  width: 42%;
  max-width: 240px;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(198,147,118,0.25);
  box-shadow: 0 0 40px rgba(198,147,118,0.2), 0 20px 60px rgba(0,0,0,0.5);
  animation: hud-float 6s ease-in-out infinite;
  z-index: 3;
  pointer-events: none;
}
.hero-hud img { width: 100%; display: block; }

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

/* Show/hide hero variants */
@media (min-width: 1024px) {
  .hero-mob { display: none; }
  .hero-desk { display: block; }
}

/* Shared buttons mobile */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.85rem 1.5rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--brown), #3D2E24);
  color: white; font-weight: 600; font-size: 0.875rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(74,55,40,0.25);
  transition: all 0.3s;
}
.btn-primary:hover { transform: translateY(-2px); }

.btn-secondary {
  display: inline-flex; align-items: center;
  padding: 0.85rem 1.5rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(74,55,40,0.1);
  color: var(--brown); font-weight: 600; font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-secondary:hover { border-color: var(--tan); color: var(--tan); }

/* ═══════════════════════════════════════
   SECTIONS
═══════════════════════════════════════ */
.section-pad { padding: 5rem 1.5rem; }
@media (min-width: 768px) { .section-pad { padding: 6rem 2rem; } }

.section-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 0.65rem;
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--brown);
}

/* Glass cards */
.glass-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  padding: 2rem;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: 0 8px 32px rgba(74,55,40,0.07);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.glass-card::before {
  content: '';
  position: absolute; top: 0; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.95), transparent);
}
.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(74,55,40,0.1);
}

/* Bento features */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.bento-card {
  border-radius: 1.25rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.75);
  transition: all 0.35s var(--ease);
}
.bento-card:hover {
  transform: translateY(-3px);
  border-color: rgba(198,147,118,0.35);
  box-shadow: 0 12px 40px rgba(198,147,118,0.12);
}
.bento-card.wide { grid-column: span 2; }
.bento-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--brown); margin-bottom: 0.3rem; }
.bento-card p { font-size: 0.8rem; color: var(--brown-soft); line-height: 1.5; }
.bento-icon {
  width: 2.25rem; height: 2.25rem;
  border-radius: 0.65rem;
  background: linear-gradient(135deg, var(--brown), #3D2E24);
  color: white;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.85rem;
}

@media (max-width: 1024px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-card.wide { grid-column: span 2; }
}
@media (max-width: 640px) {
  .bento { grid-template-columns: 1fr; }
  .bento-card.wide { grid-column: span 1; }
}

/* AI dark section */
.ai-dark {
  background: var(--dark-2);
  color: white;
  position: relative;
  overflow: hidden;
}
.ai-dark::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198,147,118,0.12), transparent 70%);
  pointer-events: none;
}
.ai-dark .section-label { color: var(--tan-light); }
.ai-dark .section-heading { color: white; }
.ai-dark p { color: rgba(255,255,255,0.55); }

.ai-glow-frame {
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(198,147,118,0.2);
  box-shadow: 0 0 60px rgba(198,147,118,0.15);
  line-height: 0;
}
.ai-glow-frame img { width: 100%; display: block; }

.ai-step-dark {
  display: flex; gap: 1rem;
  padding: 1.15rem 1.25rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 0.65rem;
  transition: border-color 0.3s;
}
.ai-step-dark:hover { border-color: rgba(198,147,118,0.3); }
.ai-step-dark .num { font-size: 0.7rem; font-weight: 800; color: var(--tan); }
.ai-step-dark h4 { font-size: 0.9rem; font-weight: 600; color: white; margin-bottom: 0.15rem; }
.ai-step-dark p { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* Screenshots */
.screens-wrap { position: relative; }
.screens-track {
  display: flex; gap: 1.5rem;
  overflow-x: auto; padding: 1.5rem 0 2rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.screens-track::-webkit-scrollbar { display: none; }

.screen-card {
  flex: 0 0 auto;
  scroll-snap-align: center;
  width: 200px;
  transition: transform 0.4s var(--ease);
}
.screen-card:hover { transform: translateY(-8px); }
.screen-card.featured .screen-frame {
  border-color: rgba(198,147,118,0.45);
  box-shadow: 0 24px 60px rgba(198,147,118,0.22);
}

.screen-frame {
  height: 400px;
  border-radius: 1.75rem;
  overflow: hidden;
  line-height: 0;
  border: 2px solid rgba(255,255,255,0.5);
  box-shadow: 0 20px 50px rgba(74,55,40,0.12);
  transition: box-shadow 0.4s;
  background: #1a1512;
}
.screen-card:hover .screen-frame {
  box-shadow: 0 28px 60px rgba(198,147,118,0.25);
  border-color: rgba(198,147,118,0.35);
}
.screen-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.screen-cap { text-align: center; margin-top: 0.7rem; font-size: 0.78rem; font-weight: 600; color: var(--brown-mid); }

@media (max-width: 640px) {
  .screen-frame { height: 360px; }
  .screen-card { width: 180px; }
}

.carousel-btn {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(74,55,40,0.1);
  background: rgba(255,255,255,0.7);
  color: var(--brown);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s;
}
.carousel-btn:hover { background: var(--brown); color: white; }

/* Pricing */
.price-popular {
  background: var(--brown) !important;
  color: white;
  border-color: var(--brown) !important;
  box-shadow: 0 24px 60px rgba(74,55,40,0.2) !important;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-price {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.pricing-currency {
  font-size: 0.95rem;
  font-weight: 600;
  margin-left: 0.15rem;
}

.pricing-period {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.65;
}

.price-popular .pricing-currency,
.price-popular .pricing-period {
  opacity: 0.8;
}

.pricing-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: auto;
}

.pricing-features li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(74,55,40,0.78);
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.05rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--tan);
}

.pricing-features-light li {
  color: rgba(255,255,255,0.72);
}

.pricing-features-light li::before {
  color: var(--tan-light);
}

/* CTA */
.cta-future {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  padding: 4.5rem 2rem;
  text-align: center;
  background: var(--dark);
}
.cta-future::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 120%, rgba(198,147,118,0.25), transparent),
    url('../images/hero-bg.jpg') center/cover;
  opacity: 0.35;
}
.cta-future .inner { position: relative; z-index: 1; }
.cta-future h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  color: white;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}
.cta-future p { color: rgba(255,255,255,0.5); margin-bottom: 2rem; }

/* Download section */
.download-panel {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  background: linear-gradient(135deg, #141210 0%, #1f1814 50%, #2a1f18 100%);
  border: 1px solid rgba(198,147,118,0.15);
  box-shadow: 0 32px 80px rgba(74,55,40,0.2);
}

.download-glow {
  position: absolute;
  top: -30%; right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198,147,118,0.2), transparent 70%);
  pointer-events: none;
}

.download-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 3rem 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .download-grid {
    grid-template-columns: 1.1fr 0.9fr;
    padding: 3.5rem 3rem;
  }
}

.download-copy .section-label { color: var(--tan-light); }
.download-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin: 1rem 0 2rem;
  max-width: 28rem;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1.25rem 0.7rem 1rem;
  border-radius: 0.85rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: white;
  text-decoration: none;
  min-width: 180px;
  transition: all 0.3s ease;
  backdrop-filter: blur(12px);
}

.store-badge:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(198,147,118,0.45);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.store-icon {
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
}

.store-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.store-text small {
  font-size: 0.6rem;
  opacity: 0.75;
  letter-spacing: 0.02em;
}

.store-text strong {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.download-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.download-perks li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.download-perks span {
  color: var(--tan);
  font-weight: 700;
}

.download-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.download-phone {
  width: min(280px, 72vw);
  max-height: 480px;
  border-radius: 1.25rem;
  overflow: hidden;
  border: none;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45), 0 0 40px rgba(198,147,118,0.12);
  animation: phone-float 5s ease-in-out infinite;
}

.download-phone img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.download-badge-float {
  position: absolute;
  top: 8%;
  right: 8%;
  padding: 0.45rem 0.9rem;
  border-radius: 9999px;
  background: rgba(198,147,118,0.2);
  border: 1px solid rgba(198,147,118,0.35);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tan-light);
  backdrop-filter: blur(8px);
}

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

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Subpages */
.page-sub { background: var(--cream); }

.page-hero {
  padding: 7rem 1.5rem 2.5rem;
  text-align: center;
  background: linear-gradient(180deg, var(--cream-dark), var(--cream));
}

.page-hero-desc {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--brown-soft);
  max-width: 32rem;
  margin: 0.75rem auto 0;
}

.page-main {
  padding: 0 1.5rem 5rem;
}

/* Shared card typography */
.card-icon {
  width: 2.75rem; height: 2.75rem;
  border-radius: 0.85rem;
  background: linear-gradient(135deg, rgba(198,147,118,0.22), rgba(198,147,118,0.05));
  display: flex; align-items: center; justify-content: center;
  color: var(--tan);
  margin-bottom: 1rem;
}
.card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 0.5rem;
}
.card-text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--brown-soft);
}
.card-link {
  color: var(--tan);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}
.card-link:hover { text-decoration: underline; }
.card-meta {
  font-size: 0.75rem;
  color: var(--brown-soft);
  margin-top: 0.5rem;
  opacity: 0.8;
}

.warn-row { display: flex; gap: 1rem; align-items: flex-start; }
.warn-icon {
  width: 2.75rem; height: 2.75rem;
  border-radius: 0.75rem;
  background: rgba(239,68,68,0.08);
  display: flex; align-items: center; justify-content: center;
  color: #ef4444;
  flex-shrink: 0;
}

.step-list { display: flex; flex-direction: column; gap: 1.25rem; }
.step-item { display: flex; gap: 0.85rem; }
.step-badge {
  width: 1.75rem; height: 1.75rem;
  border-radius: 50%;
  background: var(--brown);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 0.25rem;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.check-list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.875rem;
  color: var(--brown-soft);
  line-height: 1.55;
}
.check-mark { color: var(--tan); flex-shrink: 0; }

.legal-meta {
  font-size: 0.85rem;
  color: var(--brown-soft);
  margin-bottom: 1.5rem;
}

.legal h2, .legal h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; color: var(--brown);
  margin: 1.75rem 0 0.5rem;
}
.legal p, .legal li {
  font-size: 0.9rem; line-height: 1.75;
  color: var(--brown-soft); margin-bottom: 0.6rem;
}
.legal a { color: var(--tan); text-decoration: none; font-weight: 500; }
.legal a:hover { text-decoration: underline; }
.legal ul { padding-left: 1.25rem; }

.legal-emphasis {
  background: rgba(198, 147, 118, 0.22);
  padding: 0.12em 0.4em;
  border-radius: 0.25em;
  font-weight: 600;
  color: var(--brown);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.legal-callout {
  background: rgba(198, 147, 118, 0.12);
  border-left: 3px solid var(--tan);
  padding: 0.85rem 1rem;
  margin: 1rem 0;
  border-radius: 0 0.5rem 0.5rem 0;
}

.legal-callout p:last-child { margin-bottom: 0; }
.legal-callout strong { color: var(--brown); }

/* Footer — shared */
.site-footer {
  background: var(--brown);
  color: rgba(255,255,255,0.5);
  padding: 3rem 1.5rem 2rem;
}

.footer-logo {
  display: inline-flex;
  margin-bottom: 1rem;
}
.footer-logo .logo-text { color: white; }

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 16rem;
}

.footer-heading {
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.875rem;
}
.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--tan-light); }

.footer-copy {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

.page-home { background: var(--cream); }

.nav-pill-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ═══════════════════════════════════════
   LANDING V2 — clean premium layout
═══════════════════════════════════════ */
.landing-hero {
  position: relative;
  min-height: 100dvh;
  padding: 7rem 1.5rem 4rem;
  overflow: hidden;
}

.landing-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 65% 20%, rgba(217,185,155,0.35), transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(198,147,118,0.12), transparent 55%),
    var(--cream);
  pointer-events: none;
}

.landing-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr 0.75fr;
  gap: 2.5rem;
  align-items: center;
}

.landing-copy h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.75rem, 5.5vw, 4.25rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--brown);
  margin: 1.25rem 0 1.25rem;
}

.landing-copy p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--brown-soft);
  max-width: 22rem;
  margin-bottom: 2rem;
}

.landing-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Visual: portrait + floating phone */
.landing-visual {
  position: relative;
  height: min(580px, 72vh);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.portrait-card {
  position: absolute;
  inset: 0;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(74,55,40,0.15);
  background: #1a1512;
}
.portrait-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.phone-card {
  position: relative;
  z-index: 2;
  width: 200px;
  margin-right: -2rem;
  margin-bottom: 1.5rem;
  border-radius: 1.75rem;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.9);
  box-shadow: 0 24px 60px rgba(74,55,40,0.22), 0 0 0 1px rgba(74,55,40,0.06);
  animation: phone-float 5s ease-in-out infinite;
}
.phone-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* Stats column */
.landing-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.stat-item svg {
  color: var(--tan);
  flex-shrink: 0;
  opacity: 0.9;
}
.stat-item strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.stat-item span {
  font-size: 0.8rem;
  color: var(--brown-soft);
}

/* Split section */
.landing-split-section {
  padding: 0 1.5rem 5rem;
}

.landing-split {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 2rem;
  overflow: hidden;
  background: white;
  box-shadow: 0 24px 70px rgba(74,55,40,0.1);
  border: 1px solid rgba(74,55,40,0.06);
  min-height: 480px;
}

.landing-split-media {
  background: #f0ebe6;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.landing-split-media img {
  max-height: 520px;
  width: auto;
  max-width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 20px 50px rgba(74,55,40,0.15);
}

.landing-split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 3rem 2.5rem;
  background: linear-gradient(180deg, rgba(217,185,155,0.3) 0%, var(--cream) 100%);
}

.landing-split-text h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 0.85rem;
}

.landing-split-text p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--brown-soft);
  max-width: 24rem;
  margin: 0 auto 1.5rem;
}

.split-divider {
  width: 1px;
  height: 40px;
  margin: 0.5rem auto 1.5rem;
  background: linear-gradient(to bottom, var(--tan), transparent);
}

/* Quote section */
.landing-quote-section {
  padding: 5rem 1.5rem 6rem;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.landing-quote {
  max-width: 52rem;
  margin: 0 auto;
  text-align: center;
}

.landing-quote p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 500;
  line-height: 1.35;
  color: var(--brown);
  letter-spacing: -0.01em;
}

.quote-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2rem;
}
.quote-tags span {
  padding: 0.45rem 1rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(198,147,118,0.25);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brown-mid);
}

/* Trust pill (shared) */
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.35rem 0.85rem 0.35rem 0.4rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(74,55,40,0.08);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--brown-mid);
}
.trust-avatars { display: flex; }
.trust-avatars span {
  width: 1.35rem; height: 1.35rem;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -0.4rem;
}
.trust-avatars span:first-child { margin-left: 0; background: linear-gradient(135deg, #E8C4B0, var(--tan)); }
.trust-avatars span:nth-child(2) { background: linear-gradient(135deg, var(--brown-mid), var(--brown)); }
.trust-avatars span:nth-child(3) { background: linear-gradient(135deg, #D9B99B, #A67B5F); }

@media (max-width: 1024px) {
  .landing-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .landing-copy p { margin-left: auto; margin-right: auto; }
  .landing-ctas { justify-content: center; }
  .trust-pill { margin: 0 auto; }
  .landing-visual { height: 420px; max-width: 360px; margin: 0 auto; }
  .phone-card { width: 160px; margin-right: -1rem; }
  .landing-stats {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  .stat-item { flex-direction: column; text-align: center; min-width: 100px; }
  .landing-split { grid-template-columns: 1fr; }
  .landing-split-media { min-height: 320px; }
}

@media (max-width: 640px) {
  .landing-hero { padding-top: 6rem; }
  .landing-visual { height: 360px; }
  .phone-card { width: 140px; }
  .stat-item { flex-direction: row; }
}

@media (prefers-reduced-motion: reduce) {
  .phone-card { animation: none; }
}
