/* ═══════════════════════════════════════════
   VITANTRA — index.css (Homepage)
═══════════════════════════════════════════ */

/* ── HERO ── */
.hero {
  min-height: 100svh;
  background: var(--bg-dark-deep);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 130px; padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}

/* Background texture layers */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-bg-grid {
  position: absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.014) 1px, transparent 1px);
  background-size: 88px 88px;
}
.hero-bg-radial {
  position: absolute; inset:0;
  background:
    radial-gradient(ellipse 80% 60% at 15% 20%, rgba(26,58,53,0.85) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(26,58,53,0.6) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 60% 20%, rgba(125,181,160,0.06) 0%, transparent 50%);
}
.hero-bg-vignette {
  position: absolute; inset:0;
  background: radial-gradient(ellipse 100% 100% at 50% 50%, transparent 35%, rgba(15,36,32,0.75) 100%);
}

/* Large italic letterform background art */
.hero-letter {
  position: absolute;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: 56vw;
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1px rgba(125,181,160,0.06);
  top: -5%;
  right: -8%;
  user-select: none;
  pointer-events: none;
  letter-spacing: -0.06em;
}

/* Decorative top horizontal rule */
.hero-top-rule {
  position: absolute;
  top: 105px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(255,255,255,0.06) 30%, rgba(255,255,255,0.06) 70%, transparent 95%);
}

/* Bottom rule */
.hero-bottom-rule {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,146,74,0.2), transparent);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: flex-end;
}

/* Left: main headline */
.hero-left {}

.hero-pre {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  opacity: 0;
  animation: heroIn 1s 0.1s var(--ease-expo) forwards;
}
.hero-pre-line { width: 48px; height: 1px; background: var(--gold); }

.hero-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(72px, 9vw, 128px);
  font-weight: 300;
  font-style: italic;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ivory);
  margin-bottom: 0;
  opacity: 0;
  animation: heroIn 1s 0.18s var(--ease-expo) forwards;
}
.hero-headline-line2 {
  display: block;
  color: var(--sage-light);
}
.hero-headline-line3 {
  display: block;
  color: rgba(248,244,238,0.30);
  font-size: 0.72em;
}

.hero-rule-mid {
  width: 100%; height:1px;
  background: rgba(255,255,255,0.08);
  margin: 40px 0;
  opacity: 0;
  animation: heroIn 0.8s 0.36s var(--ease-expo) forwards;
}

.hero-desc {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.78;
  color: var(--tx-inv-sub);
  max-width: 560px;
  margin-bottom: 40px;
  opacity: 0;
  animation: heroIn 0.9s 0.44s var(--ease-expo) forwards;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroIn 0.9s 0.52s var(--ease-expo) forwards;
}

.hero-trust {
  display: flex;
  gap: 28px;
  margin-top: 32px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroIn 0.9s 0.60s var(--ease-expo) forwards;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--tx-inv-faint);
  font-weight: 400;
  letter-spacing: 0.02em;
}
.hero-trust-item::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

@keyframes heroIn {
  from { opacity:0; transform: translateY(20px); }
  to   { opacity:1; transform: none; }
}

/* Right: stats panel */
.hero-stats-panel { max-width: 520px; margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border-dark-md);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: rgba(15,36,32,0.6);
  backdrop-filter: blur(16px);
  opacity: 0;
  animation: heroIn 1.1s 0.5s var(--ease-expo) forwards;
}
.hsp-row {
  padding: 24px 28px;
  border-bottom: 1px solid var(--border-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hsp-row:last-child { border-bottom: none; }
.hsp-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--tx-inv-faint);
  letter-spacing: 0.04em;
}
.hsp-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--ivory);
  letter-spacing: -0.02em;
}
.hsp-value em {
  font-style: italic;
  color: var(--sage-light);
  font-size: 0.85em;
}
.hsp-value.gold { color: var(--gold-light); }

.hsp-app-preview {
  padding: 20px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hsp-app-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tx-inv-faint);
  margin-bottom: 4px;
}
.hsp-plan-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 12px 14px;
  border-left: 2px solid transparent;
}
.hsp-plan-item.pi-green { border-left-color: var(--sage); }
.hsp-plan-item.pi-blue  { border-left-color: #4A90C4; }
.hsp-plan-item.pi-gold  { border-left-color: var(--gold); }
.hsp-plan-icon { font-size: 18px; flex-shrink:0; }
.hsp-plan-text {}
.hsp-plan-name { font-size: 12px; font-weight: 600; color: var(--ivory); }
.hsp-plan-detail { font-size: 10.5px; color: var(--tx-inv-faint); margin-top: 1px; }

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 40px; left: 0; right: 0;
  display: flex;
  justify-content: center;
  z-index: 10;
  opacity: 0;
  animation: heroIn 0.9s 1s var(--ease-expo) forwards;
}
.hero-scroll-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--tx-inv-faint);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-scroll-track {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  overflow: hidden;
  position: relative;
}

/* ── MARQUEE ── */
.marquee {
  background: var(--forest);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 24s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { 0%{ transform:translateX(0); } 100%{ transform:translateX(-50%); } }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 44px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(248,244,238,0.5);
  white-space: nowrap;
  letter-spacing: 0.06em;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.marquee-dot { width:4px; height:4px; border-radius:50%; background: var(--gold); flex-shrink:0; }

/* ── STATEMENT SECTION ── */
.statement {
  background: var(--bg);
  padding: 160px 0;
  position: relative;
}
.statement-inner { width: 100%;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 100px;
  align-items: start;
}
.statement-left {
  padding-top: 12px;
}
.statement-icon {
  font-size: 52px;
  line-height: 1;
  margin-bottom: 16px;
}
.statement-num-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.statement-right {}
.statement-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 300;
  font-style: italic;
  color: var(--tx);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 36px;
}
.statement-headline strong {
  font-style: normal;
  font-weight: 600;
  color: var(--forest);
}
.statement-body {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.82;
  color: var(--tx-sub);
  max-width: 580px;
  margin-bottom: 48px;
}
.statement-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.stat-cell {
  background: var(--surface);
  padding: 28px 24px;
}
.stat-cell-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: -0.04em;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.stat-cell-num em { font-style: italic; color: var(--gold); }
.stat-cell-lbl { font-size: 13px; color: var(--tx-faint); font-weight: 400; }

/* ── PILLARS ── */
.pillars {
  background: var(--bg-dark-deep);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.pillars-grid-bg {
  position: absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.012) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.pillars-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border-dark);
}
.pillars-header-left {}
.pillars-h-eyebrow { margin-bottom: 20px; }
.pillars-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 300;
  font-style: italic;
  color: var(--ivory);
  line-height: 1.06;
  letter-spacing: -0.01em;
}
.pillars-title strong {
  font-style: normal;
  font-weight: 600;
  display: block;
  color: var(--sage-light);
}
.pillars-header-right {}
.pillars-desc {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.80;
  color: var(--tx-inv-sub);
  margin-bottom: 28px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.pillar {
  background: rgba(15,36,32,0.5);
  backdrop-filter: blur(8px);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
  transition: background 280ms ease;
  display: flex;
  flex-direction: column;
}
.pillar-text {
  flex: 1;
  margin-bottom: 24px;
}
.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,146,74,0.4), transparent);
  opacity: 0;
  transition: opacity 280ms ease;
}
.pillar:hover { background: rgba(26,58,53,0.55); }
.pillar:hover::before { opacity: 1; }
.pillar-num {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
}
.pillar-icon { font-size: 40px; margin-bottom: 20px; }
.pillar-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--ivory);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.pillar-text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--tx-inv-sub);
  margin-bottom: 24px;
}
.pillar-tags {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 0;
  align-self: flex-end;
  width: 100%;
}
.pillar-tag {
  background: rgba(125,181,160,0.1);
  border: 1px solid rgba(125,181,160,0.2);
  color: var(--sage-light);
  font-size: 10.5px;
  font-weight: 600;
  padding: 7px 8px;
  border-radius: var(--r-sm);
  letter-spacing: 0.02em;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-stats-panel { max-width: 520px; margin-left: auto; display: none; }
  .statement-inner { width: 100%; grid-template-columns: 1fr; gap: 48px; }
  .pillars-header { grid-template-columns: 1fr; gap: 32px; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero-headline { font-size: 64px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .statement-stats { grid-template-columns: 1fr; }
  .pillar-tags { grid-template-columns: repeat(3, 1fr); }
}

/* ── FEAT PREVIEW GRID ── */
.feat-preview-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.fp-card { background:white; border:1px solid var(--border); border-radius:var(--r-xl); padding:28px; transition:transform 0.22s var(--ease-expo), box-shadow 0.22s; }
.fp-card:hover { transform:translateY(-4px); box-shadow:var(--sh-lg); }
.fp-icon { font-size:32px; margin-bottom:14px; }
.fp-title { font-size:17px; font-weight:600; color:var(--forest); margin-bottom:8px; }
.fp-body { font-size:14px; font-weight:300; line-height:1.75; color:var(--tx-sub); margin-bottom:16px; }

/* ── COMP CARDS ── */
.comp-cards { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.comp-card { background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.1); border-radius:var(--r-lg); padding:24px; text-align:center; }
.comp-vs { font-size:10px; font-weight:800; letter-spacing:0.16em; color:var(--gold); text-transform:uppercase; margin-bottom:8px; }
.comp-stat { font-family:'Cormorant Garamond',serif; font-size:36px; font-weight:600; color:var(--ivory); line-height:1; margin-bottom:8px; }
.comp-desc { font-size:12px; font-weight:300; line-height:1.65; color:var(--tx-inv-sub); }

/* ── PRICE PREVIEW GRID ── */
.price-preview-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.pp-card { background:white; border:1px solid var(--border); border-radius:var(--r-xl); padding:24px; position:relative; }
.pp-card.featured { border:2px solid var(--gold); box-shadow:var(--sh-gold); }
.pp-badge { position:absolute; top:-12px; left:50%; transform:translateX(-50%); background:var(--gold); color:white; font-size:11px; font-weight:700; padding:4px 14px; border-radius:var(--r-full); white-space:nowrap; }
.pp-tier { font-size:11px; font-weight:700; letter-spacing:0.12em; text-transform:uppercase; color:var(--forest); margin-bottom:8px; }
.pp-card.featured .pp-tier { color:var(--gold); }
.pp-price-wrap { display:flex; align-items:baseline; gap:2px; margin-bottom:4px; }
.pp-price { font-family:'Cormorant Garamond',serif; font-size:32px; font-weight:600; color:var(--forest); line-height:1; }
.pp-period { font-size:13px; color:var(--tx-faint); }
.pp-mo { font-size:12px; color:var(--tx-faint); margin-bottom:16px; }
.pp-feats { list-style:none; }
.pp-feats li { font-size:13px; font-weight:300; color:var(--tx-sub); padding:6px 0; border-bottom:1px solid var(--border); display:flex; align-items:flex-start; gap:8px; }
.pp-feats li::before { content:'✓'; color:var(--sage); font-weight:700; flex-shrink:0; font-size:12px; margin-top:1px; }
.pp-feats li:last-child { border-bottom:none; }

/* ── HERO LINKS ROW ── */
.hero-links { display:flex; gap:14px; flex-wrap:wrap; margin-top:28px; }
.hero-launch-pill { margin-bottom:20px; }
.hero-trust { display:flex; align-items:center; gap:12px; flex-wrap:wrap; margin-top:20px; }
.hero-trust-sep { color:var(--tx-inv-faint); }

/* ── PRICING PAGE ADDITIONS ── */
.p-launch-note { text-align:center; padding:14px 20px; background:var(--ivory-deep); border-radius:var(--r-md); font-size:13px; font-weight:500; color:var(--tx-sub); }
.p-launch-note.featured-note { background:var(--gold-pale); color:var(--gold); }
.p-cta-area { margin-top:auto; padding-top:20px; }
.p-card { display:flex; flex-direction:column; }

@media(max-width:1100px) {
  .feat-preview-grid, .comp-cards { grid-template-columns:repeat(2,1fr); }
  .price-preview-grid { grid-template-columns:repeat(2,1fr); }
}
@media(max-width:768px) {
  .feat-preview-grid, .comp-cards, .price-preview-grid { grid-template-columns:1fr; }
}
