/* ============================================================
   HOME.CSS — Main page styles
   (brand variables, fonts, nav → base.css)
   ============================================================ */

/* ——— HERO ——— */
.v2-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 94vh;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.v2-hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 5rem 6rem 3rem;
  max-width: 700px;
}
.v2-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
  font-family: var(--fbr);
  color: var(--o);
  margin-bottom: 2rem;
}
.v2-hero-tag::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--o);
  display: block;
}
.v2-hero-h {
  font-family: var(--fbc);
  font-size: clamp(4rem, 7vw, 8rem);
  font-weight: 800;
  line-height: .92;
  color: var(--k);
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.v2-hero-h strong { font-weight: 800; display: block; }
.v2-hero-h em { font-style: normal; color: var(--o); }
.v2-hero-sub {
  font-family: var(--fbr);
  font-size: 1rem;
  color: var(--m);
  line-height: 1.8;
  font-weight: 400;
  max-width: 420px;
  margin-bottom: 2.5rem;
}
.v2-hero-btns {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.v2-btn-primary {
  background: var(--o);
  color: #fff;
  padding: 1rem 2.4rem;
  font-family: var(--fbr);
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: background .2s, transform .15s;
}
.v2-btn-primary:hover { background: var(--ob); transform: translateY(-2px); }
.v2-btn-ghost {
  color: var(--k);
  font-family: var(--fbr);
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--k);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.v2-btn-ghost:hover { color: var(--o); border-color: var(--o); }

/* hero right panel */
.v2-hero-right {
  background: var(--o);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.v2-hero-right::before {
  content: 'VONEEDL';
  position: absolute;
  font-family: var(--fbc);
  font-size: 13vw;
  font-weight: 800;
  color: rgba(0,0,0,.1);
  letter-spacing: .05em;
  white-space: nowrap;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.v2-hero-needle {
  position: relative;
  z-index: 2;
  animation: v2float 7s ease-in-out infinite;
}
@keyframes v2float {
  0%,100% { transform: translateY(0) rotate(-6deg); }
  50%      { transform: translateY(-20px) rotate(2deg); }
}

/* ——— STATS ——— */
.v2-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--border);
}
.v2-stat {
  padding: 2rem 2.5rem;
  border-right: 1px solid var(--border);
}
.v2-stat:last-child { border-right: none; }

/* fade-in delays via nth-child */
.v2-stat:nth-child(2) { transition-delay: .08s; }
.v2-stat:nth-child(3) { transition-delay: .16s; }
.v2-stat:nth-child(4) { transition-delay: .24s; }

.v2-stat-num {
  font-family: var(--fbc);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--k);
  line-height: 1;
  margin-bottom: .2rem;
}
.v2-stat-num sup { font-size: .45em; color: var(--o); }
.v2-stat-lbl {
  font-family: var(--fbr);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--m);
}

/* ——— PRODUCTS ——— */
.v2-products {
  padding: 5rem 3rem;
  border-bottom: 1px solid var(--border);
}
.v2-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.v2-section-label {
  font-family: var(--fbr);
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--o);
  font-weight: 700;
  margin-bottom: .6rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.v2-section-label::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--o);
  display: block;
}
.v2-section-h {
  font-family: var(--fbc);
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--k);
  line-height: 1;
}
.v2-section-h em { font-style: normal; color: var(--o); }
.v2-all-link {
  font-family: var(--fbr);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--k);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  white-space: nowrap;
  transition: color .2s, border-color .2s;
}
.v2-all-link:hover { color: var(--o); border-color: var(--o); }

/* ——— FILTERS ——— */
.v2-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2rem;
}
.v2-filter {
  font-family: var(--fbr);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .55rem 1.4rem;
  border: 1px solid var(--border);
  background: var(--w);
  color: var(--m);
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
}
.v2-filter:hover { border-color: var(--o); color: var(--o); }
.v2-filter.active { background: var(--o); color: #fff; border-color: var(--o); }
.v2-card.hidden { display: none; }

/* Product grid */
.v2-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.v2-card {
  background: var(--w);
  padding: 1.8rem 1.6rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background .25s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.v2-card:hover { background: var(--g); }

/* Product image */
.v2-card-img {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 1.2rem;
  background: var(--g);
  display: flex;
  align-items: center;
  justify-content: center;
}
.v2-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform .3s;
}
.v2-card:hover .v2-card-img img { transform: scale(1.04); }

.v2-card-link { margin-top: auto; }

/* fade-in delays for cards */
.v2-card:nth-child(2) { transition-delay: .06s; }
.v2-card:nth-child(3) { transition-delay: .10s; }
.v2-card:nth-child(4) { transition-delay: .14s; }
.v2-card:nth-child(5) { transition-delay: .18s; }
.v2-card:nth-child(6) { transition-delay: .22s; }
.v2-card:nth-child(7) { transition-delay: .26s; }

.v2-card-cat {
  font-family: var(--fbr);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--o);
  font-weight: 700;
  margin-bottom: .8rem;
}
.v2-card-name {
  font-family: var(--fbc);
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--k);
  line-height: 1.2;
  margin-bottom: .8rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.v2-card-name em { font-style: normal; color: var(--o); }
.v2-card.featured .v2-card-name { font-size: clamp(2.2rem, 3.5vw, 4rem); color: var(--w); }
.v2-card.featured .v2-card-name em { color: var(--o); }

.v2-card-desc {
  font-family: var(--fbr);
  font-size: .88rem;
  color: var(--m);
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 1.8rem;
  max-width: 380px;
}
.v2-card.featured .v2-card-desc { color: rgba(255,255,255,.5); }

.v2-card-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--fbr);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  color: var(--k);
  border-bottom: 2px solid var(--o);
  padding-bottom: 2px;
  transition: color .2s;
}
.v2-card-link:hover { color: var(--o); }
.v2-card.featured .v2-card-link { color: var(--o); border-color: var(--o); }
.v2-card.featured .v2-card-link:hover { color: var(--w); border-color: var(--w); }
.v2-card-link svg { transition: transform .2s; }
.v2-card-link:hover svg { transform: translateX(4px); }

/* decorative number */
.v2-card-num {
  position: absolute;
  bottom: -1rem;
  right: 1rem;
  font-family: var(--fbc);
  font-size: 8rem;
  font-weight: 800;
  color: rgba(0,0,0,.04);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
.v2-card.featured .v2-card-num { color: rgba(255,255,255,.04); font-size: 14rem; }

/* ——— VALUES ——— */
.v2-values {
  background: var(--dark-bg);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--dark-border);
}
.v2-val {
  padding: 4rem 3rem;
  border-right: 1px solid var(--dark-border);
  position: relative;
  transition: background .3s;
}
.v2-val:last-child { border-right: none; }
.v2-val:hover { background: var(--dark-hover); }

/* fade-in delays for values */
.v2-val:nth-child(2) { transition-delay: .1s; }
.v2-val:nth-child(3) { transition-delay: .2s; }

.v2-val-num {
  font-family: var(--fbc);
  font-size: 5rem;
  font-weight: 800;
  color: var(--o);
  opacity: .2;
  line-height: 1;
  margin-bottom: 1rem;
  transition: opacity .3s;
}
.v2-val:hover .v2-val-num { opacity: .5; }
.v2-val-icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--o);
  margin-bottom: 1.2rem;
}
.v2-val-h {
  font-family: var(--fbc);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: .6rem;
}
.v2-val-p { font-family: var(--fbr); font-size: .85rem; color: rgba(255,255,255,.4); line-height: 1.7; font-weight: 400; }

/* ——— CTA ——— */
.v2-cta {
  background: var(--o);
  padding: 6rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.v2-cta::before {
  content: 'VONEEDL';
  position: absolute;
  font-family: var(--fbc);
  font-size: 22vw;
  font-weight: 800;
  color: rgba(0,0,0,.08);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.v2-cta > * { position: relative; z-index: 1; }
.v2-cta-tag {
  font-family: var(--fbr);
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(0,0,0,.5);
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.v2-cta-h {
  font-family: var(--fbc);
  font-size: clamp(3rem, 5vw, 6rem);
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  line-height: .95;
  margin-bottom: 2.5rem;
}
.v2-cta-h strong { font-weight: 800; display: block; }
.v2-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--dark-bg);
  color: #fff;
  padding: 1.1rem 3rem;
  font-family: var(--fbr);
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.v2-cta-btn:hover { background: var(--dark-hover); transform: translateY(-2px); }

/* ——— RESPONSIVE ——— */
@media(max-width: 1100px) {
  .v2-hero { grid-template-columns: 1fr; min-height: auto; }
  .v2-hero-right { min-height: 300px; }
  .v2-hero-left { padding: 4rem 2rem; max-width: 100%; }
  .v2-stats { grid-template-columns: repeat(2, 1fr); }
  .v2-stat:nth-child(2) { border-right: none; }
  .v2-stat:nth-child(3), .v2-stat:nth-child(4) { border-top: 1px solid var(--border); }
  .v2-grid { grid-template-columns: repeat(2, 1fr); }
  .v2-values { grid-template-columns: 1fr; }
  .v2-val { border-right: none; border-bottom: 1px solid var(--dark-border); }
}
@media(max-width: 700px) {
  .v2-hero-right { min-height: 220px; }
  .v2-hero-left { padding: 2.5rem 1.5rem; }
  .v2-stats { grid-template-columns: 1fr 1fr; }
  .v2-stat { padding: 1.4rem 1.2rem; }
  .v2-products { padding: 2.5rem 1.5rem; }
  .v2-section-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .v2-grid { grid-template-columns: repeat(2, 1fr); }
  .v2-val { padding: 2.5rem 1.5rem; }
  .v2-cta { padding: 3.5rem 1.5rem; }
  .v2-cta-h { font-size: clamp(2rem, 8vw, 3rem); }
}
