/* Hero & Landing Styles - V2 Alignment */

body.home-v2-active {
  background-color: #fdfaf4;
  overflow-x: hidden;
  font-family: 'Outfit', sans-serif;
}

.page-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation V2 */
.gnb-v2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0; /* Reduced from 30px */
}

.gnb-v2 .logo {
  font-size: 1.8rem;
  font-weight: 900;
  color: #0f172a;
}

.gnb-v2 .nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.gnb-v2 .nav-links a {
  text-decoration: none;
  font-weight: 600;
  color: #475569;
  font-size: 1rem;
}

.btn-pill-auth {
  background: #0f172a;
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 999px;
  transition: all 0.3s ease;
}

/* Hero V2 */
.hero-v2 {
  display: flex;
  /* Removed min-height: 80vh */
  align-items: center;
  gap: 40px;
  padding: 20px 0 40px; /* Reduced from padding-bottom: 60px */
}

.hero-left {
  flex: 1;
  max-width: 600px;
}

.hero-left h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: #0f172a;
  margin-bottom: 20px; /* Reduced from 24px */
}

.hero-left p {
  font-size: 1.25rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 28px; /* Reduced from 40px */
}

.hero-btns {
  display: flex;
  gap: 16px;
}

.btn-main, .btn-sub {
  padding: 16px 32px;
  border-radius: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-main {
  background: #e11d48;
  color: #fff;
}

.btn-sub {
  background: #fff;
  color: #0f172a;
  border: 1px solid #e2e8f0;
}

/* Hero Right: Tree Container */
.hero-right {
  flex: 1.2;
  position: relative;
  height: 420px; /* Reduced from 500px */
}

.tree-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.tree-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Memory Nodes */
.memory-node {
  position: absolute;
  width: 140px;
  background: #fff;
  padding: 8px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  z-index: 10;
}

.node-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 8px;
}

.node-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.node-thumb img.is-blurred {
  filter: blur(4px);
}

.play-ico {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.8);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #e11d48;
}

.node-meta {
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
  display: flex;
  justify-content: space-between;
}

.badge-memo {
  color: #e11d48;
}

/* Node Positions (Approximate based on SVG paths) */
.n1 { top: 185px; left: 10%; }
.n2 { top: 115px; left: 35%; }
.n3 { top: 285px; left: 40%; }
.n4 { top: 80px; left: 65%; }
.n5 { top: 245px; left: 70%; }

/* Lovetree Page Specific Hero Header */
.lt-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 0 40px;
  background: linear-gradient(180deg, #fdfaf4 0%, #ffffff 100%);
}

.lt-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: #0f172a;
  line-height: 1.2;
  margin: 20px 0;
}

.lt-hero p {
  font-size: 1.15rem;
  color: #475569;
  max-width: 800px;
  line-height: 1.7;
}

.lt-hero-btns {
  display: flex;
  gap: 16px;
  margin-top: 30px;
}