/* ============================================================
   VIJYAPRAKASH — Corporate Website Styles
   Parent company of Pragad · Ahmedabad, Gujarat, India
   vijyaprakash.com
============================================================ */

/* ── Variables ──────────────────────────────────────────────── */
:root {
  --ink:       #0A0A0F;
  --ink-2:     #14141C;
  --ink-3:     #1E1E2A;
  --cream:     #FAF8F4;
  --cream-2:   #F0EDE8;
  --cream-3:   #E6E2DB;

  --gold:      #C9A84C;
  --gold-light:#E8C97A;
  --gold-dim:  rgba(201, 168, 76, 0.18);

  --pragad:    #5B4EFF;
  --pragad-dim:rgba(91, 78, 255, 0.15);

  --text-ink:    #0A0A0F;
  --text-ink-2:  #3A3A4A;
  --text-ink-3:  #7A7A8A;
  --text-cream:  #FAF8F4;
  --text-cream-2:#C8C5BE;
  --text-cream-3:#7A7870;

  --border-ink:  rgba(255,255,255,0.07);
  --border-cream:rgba(0,0,0,0.08);

  --grad-gold: linear-gradient(135deg, #C9A84C 0%, #E8C97A 50%, #C9A84C 100%);
  --grad-text-gold: linear-gradient(135deg, #E8C97A 0%, #C9A84C 100%);

  --font-serif:   'Playfair Display', Georgia, serif;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'Inter', sans-serif;

  --r-sm:   6px;
  --r-md:   14px;
  --r-lg:   22px;
  --r-xl:   32px;
  --r-full: 999px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--text-cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  opacity: 0;
  animation: pageIn 0.45s var(--ease) 0.05s forwards;
}

@keyframes pageIn {
  to { opacity: 1; }
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--ink-2); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 99px; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; outline: none; }
ul { list-style: none; }

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: 112px 0; }

/* ── Typography ─────────────────────────────────────────────── */
.display {
  font-family: var(--font-serif);
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.02em;
}

h2, .h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

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

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

.gold-text {
  background: var(--grad-text-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Custom Cursor ──────────────────────────────────────────── */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease);
  mix-blend-mode: screen;
}

.cursor.hovering {
  width: 48px;
  height: 48px;
  background: rgba(201, 168, 76, 0.3);
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
}

@media (max-width: 1024px) {
  .cursor, .cursor-ring { display: none; }
}

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 28px 0;
  transition: all 0.45s var(--ease);
}

.nav.scrolled {
  padding: 18px 0;
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom: 1px solid var(--border-ink);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-wordmark {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-cream);
}

.nav-wordmark span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-cream-2);
  transition: color var(--transition);
  letter-spacing: 0.01em;
}

.nav-link:hover { color: var(--text-cream); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--gold);
  transition: all var(--transition);
}

.nav-cta:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  padding: 6px;
}

.hamburger span {
  width: 20px;
  height: 1.5px;
  background: var(--text-cream);
  border-radius: 2px;
  display: block;
  transition: all 0.3s;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  display: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  background: var(--ink-3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  color: var(--text-cream);
  border: 1px solid var(--border-ink);
}

.mobile-menu .nav-link {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--text-cream);
}

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 130px 0 100px;
}

/* Noise overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

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

.hero-line {
  position: absolute;
  background: rgba(201, 168, 76, 0.06);
}

.hero-line-h {
  width: 100%;
  height: 1px;
}

.hero-line-v {
  width: 1px;
  height: 100%;
}

.hero-line-h-1 { top: 33%; }
.hero-line-h-2 { top: 66%; }
.hero-line-v-1 { left: 20%; }
.hero-line-v-2 { left: 50%; }
.hero-line-v-3 { left: 80%; }

/* Glow */
.hero-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.07) 0%, transparent 65%);
  top: -200px;
  right: -200px;
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 78, 255, 0.08) 0%, transparent 65%);
  bottom: 0;
  left: 100px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}

.hero-left { max-width: 580px; }

/* Status tag replaces eyebrow */
.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: var(--r-full);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.1s forwards;
}

.hero-status-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.18);
  animation: statusPulse 2.8s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.18); }
  50%       { box-shadow: 0 0 0 7px rgba(201, 168, 76, 0.05); }
}

.hero-status-text {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(44px, 5.5vw, 84px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}

.hero-heading .line {
  display: block;
  overflow: hidden;
}

.hero-heading .word {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  animation: wordReveal 0.9s var(--ease) forwards;
}

.hero-heading .line:nth-child(1) .word { animation-delay: 0.1s; }
.hero-heading .line:nth-child(2) .word { animation-delay: 0.2s; }
.hero-heading .line:nth-child(3) .word { animation-delay: 0.3s; }
.hero-heading .line:nth-child(4) .word { animation-delay: 0.4s; }

@keyframes wordReveal {
  to { transform: translateY(0); opacity: 1; }
}

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

.hero-sub {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-cream-2);
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.55s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.68s forwards;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--grad-gold);
  color: var(--ink);
  border-radius: var(--r-full);
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.01em;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(201, 168, 76, 0.45);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-full);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--text-cream-2);
  transition: all var(--transition);
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.35);
  color: white;
  transform: translateY(-1px);
}

/* ── Hero Visual (right side) ──────────────────────────────── */
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease) 0.3s forwards;
}

/* Main product card */
.hv-card {
  background: var(--ink-3);
  border: 1px solid var(--border-ink);
  border-radius: var(--r-xl);
  padding: 24px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.hv-card-main {
  border-color: rgba(201, 168, 76, 0.15);
}

.hv-card-main::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.5), transparent);
}

.hv-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 20px 56px rgba(0,0,0,0.45);
  transform: translateY(-3px);
}

.hv-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.hv-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.03em;
}

.hv-logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #5B4EFF, #8B5CF6);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.hv-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.22);
  border-radius: var(--r-full);
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-display);
  color: #22C55E;
  letter-spacing: 0.04em;
}

.hv-live-dot {
  width: 5px;
  height: 5px;
  background: #22C55E;
  border-radius: 50%;
  animation: livePulse 2s ease-in-out infinite;
}

.hv-tagline {
  font-size: 13px;
  color: var(--text-cream-3);
  font-style: italic;
  margin-bottom: 16px;
}

.hv-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.hv-chip {
  padding: 4px 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-ink);
  border-radius: var(--r-full);
  font-size: 11px;
  color: var(--text-cream-2);
  font-family: var(--font-display);
  font-weight: 500;
}

.hv-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-ink);
}

.hv-stat {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-right: 4px;
}

.hv-stat strong {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: white;
}

.hv-stat span {
  font-size: 10px;
  color: var(--text-cream-3);
  white-space: nowrap;
}

.hv-link {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #5B4EFF, #8B5CF6);
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-display);
  color: white;
  white-space: nowrap;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(91,78,255,0.3);
}

.hv-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(91,78,255,0.45);
}

/* Origin card (bottom of hero visual) */
.hv-origin {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(201,168,76,0.05);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: var(--r-lg);
  transition: all var(--transition);
}

.hv-origin:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.32);
}

.hv-origin-flag { font-size: 26px; flex-shrink: 0; }

.hv-origin-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 3px;
}

.hv-origin-sub {
  font-size: 11px;
  color: var(--text-cream-3);
  line-height: 1.4;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 48px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1.1s forwards;
}

.scroll-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-cream-3);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-line::after {
  content: '';
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

/* ── Divider ─────────────────────────────────────────────────── */
.divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: var(--border-ink);
}

.divider-icon {
  color: var(--gold);
  font-size: 16px;
  opacity: 0.6;
}

/* ── Mission Section ─────────────────────────────────────────── */
.mission-section {
  background: var(--cream);
  color: var(--text-ink);
}

.mission-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 100px;
  align-items: center;
}

.mission-left .eyebrow { color: var(--ink-3); }
.mission-left .eyebrow::before,
.mission-left .eyebrow::after { background: var(--ink-3); }

.mission-left .h2 { color: var(--text-ink); margin-bottom: 24px; }

.mission-statement {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-ink-2);
}

.mission-statement p { margin-bottom: 18px; }
.mission-statement p:last-child { margin-bottom: 0; }

.mission-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.value-card {
  background: var(--cream-2);
  border: 1px solid var(--cream-3);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: all 0.4s var(--ease);
}

.value-card:hover {
  background: white;
  box-shadow: 0 16px 48px rgba(0,0,0,0.07);
  transform: translateY(-3px);
}

.value-card:nth-child(2) { margin-top: 28px; }
.value-card:nth-child(4) { margin-top: 28px; }

.value-icon {
  font-size: 26px;
  margin-bottom: 14px;
  display: block;
}

.value-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-ink);
  margin-bottom: 6px;
}

.value-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-ink-3);
}

/* ── Products Section ────────────────────────────────────────── */
.products-section {
  background: var(--ink);
}

.products-header {
  text-align: center;
  margin-bottom: 72px;
}

.products-header .h2 { color: white; margin-bottom: 16px; }

.products-header p {
  font-size: 17px;
  color: var(--text-cream-2);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 20px;
  align-items: start;
}

.products-single {
  max-width: 720px;
  margin: 0 auto;
}

/* Featured product card */
.product-card-featured {
  background: var(--ink-3);
  border: 1px solid var(--border-ink);
  border-radius: var(--r-xl);
  padding: 48px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease);
}

.product-card-featured::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-gold);
  opacity: 0.8;
}

.product-card-featured:hover {
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}

.product-card-featured .glow-orb {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--pragad-dim) 0%, transparent 70%);
  pointer-events: none;
  transition: opacity 0.5s;
}

.product-card-featured:hover .glow-orb { opacity: 1.5; }

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  border-radius: var(--r-full);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 28px;
}

.badge-live {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.25);
  color: #22C55E;
}

.badge-live-dot {
  width: 6px;
  height: 6px;
  background: #22C55E;
  border-radius: 50%;
  animation: livePulse 2s ease-in-out infinite;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2);
}

@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2); }
  50%       { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.05); }
}

.product-wordmark {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: white;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-wordmark-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #5B4EFF, #8B5CF6);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.product-tagline {
  font-size: 15px;
  color: var(--text-cream-3);
  margin-bottom: 28px;
  font-style: italic;
}

.product-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-cream-2);
  margin-bottom: 36px;
}

.product-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border-ink);
}

.p-stat-val {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: white;
}

.p-stat-label {
  font-size: 11px;
  color: var(--text-cream-3);
  margin-top: 3px;
  line-height: 1.4;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #5B4EFF, #8B5CF6);
  border-radius: var(--r-full);
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-display);
  color: white;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(91, 78, 255, 0.3);
}

.product-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(91, 78, 255, 0.45);
}

/* Coming soon card */
.product-card-future {
  background: var(--ink-2);
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: var(--r-xl);
  padding: 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 260px;
  transition: all 0.4s var(--ease);
}

.product-card-future:hover {
  border-style: solid;
  border-color: rgba(201, 168, 76, 0.2);
  background: var(--ink-3);
}

.future-icon {
  width: 52px;
  height: 52px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.future-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.future-desc {
  font-size: 14px;
  color: var(--text-cream-3);
  line-height: 1.65;
  margin-bottom: 20px;
}

.badge-soon {
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--gold);
  padding: 4px 12px;
  border-radius: var(--r-full);
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
}

/* ── Numbers Section ─────────────────────────────────────────── */
.numbers-section {
  background: var(--cream);
  color: var(--text-ink);
}

.numbers-inner {
  display: grid;
  grid-template-columns: 1fr 2px 1fr 2px 1fr 2px 1fr;
  align-items: center;
  gap: 0;
}

.num-divider {
  height: 80px;
  background: var(--cream-3);
  width: 1px;
}

.number-item {
  text-align: center;
  padding: 20px 16px;
}

.number-val {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 700;
  color: var(--text-ink);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.number-label {
  font-size: 13px;
  color: var(--text-ink-3);
  line-height: 1.5;
}

/* ── About Section ───────────────────────────────────────────── */
.about-section {
  background: var(--ink-2);
}

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

.about-text .h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: white;
  margin-bottom: 32px;
}

.about-text p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-cream-2);
  margin-bottom: 28px;
}

.about-text p:last-child { margin-bottom: 0; }

.about-text p em {
  font-style: normal;
  color: var(--gold-light);
}

.about-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.detail-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 20px 14px 18px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-ink);
  border-left: 2px solid rgba(201,168,76,0.25);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  transition: border-left-color var(--transition), background var(--transition);
}

.detail-row:hover {
  border-left-color: var(--gold);
  background: rgba(201,168,76,0.035);
}

.detail-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-cream-3);
}

.detail-value {
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--text-cream);
  line-height: 1.4;
}

/* ── Contact Section ─────────────────────────────────────────── */
.contact-section {
  background: var(--ink);
  text-align: center;
  padding: 128px 0;
  position: relative;
  overflow: hidden;
}

.contact-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-size: clamp(100px, 18vw, 260px);
  font-weight: 700;
  color: rgba(255,255,255,0.02);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.04em;
  line-height: 1;
}

.contact-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.contact-content .h2 { color: white; margin-bottom: 18px; }

.contact-content p {
  font-size: 17px;
  color: var(--text-cream-2);
  line-height: 1.7;
  margin-bottom: 48px;
}

.contact-email-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: var(--r-full);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--gold);
  transition: all var(--transition);
  letter-spacing: 0.01em;
}

.contact-email-link:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  box-shadow: 0 12px 48px rgba(201, 168, 76, 0.15);
  transform: translateY(-2px);
}

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  background: var(--ink-2);
  border-top: 1px solid var(--border-ink);
  padding: 48px 0 36px;
}

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

.footer-wordmark {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.footer-wordmark span { color: var(--gold); }

.footer-links-row {
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer-links-row a {
  font-size: 13px;
  color: var(--text-cream-3);
  transition: color var(--transition);
}

.footer-links-row a:hover { color: var(--text-cream); }

.footer-copy {
  font-size: 12px;
  color: var(--text-cream-3);
  text-align: right;
}

/* ── Scroll Reveal ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal-right.visible { opacity: 1; transform: translateX(0); }

.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.18s; }
.stagger-3 { transition-delay: 0.28s; }
.stagger-4 { transition-delay: 0.38s; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 56px; }
  .hero-left { max-width: 100%; }
  .hero-visual { max-width: 540px; }
  .mission-inner { grid-template-columns: 1fr; gap: 56px; }
  .products-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .numbers-inner {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .num-divider { display: none; }
  .number-item { border-bottom: 1px solid var(--cream-3); border-right: 1px solid var(--cream-3); }
  .number-item:nth-child(even) { border-right: none; }
  .number-item:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .mission-right { grid-template-columns: 1fr; }
  .value-card:nth-child(2), .value-card:nth-child(4) { margin-top: 0; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-copy { text-align: left; }

  .product-card-featured { padding: 32px; }
  .product-wordmark { font-size: 32px; }
  .product-stats { grid-template-columns: repeat(3, 1fr); }

  .hv-bottom-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .numbers-inner { grid-template-columns: 1fr; }
  .number-item { border-right: none; }
  .contact-email-link { font-size: 14px; padding: 14px 28px; }
  .hv-footer { flex-wrap: wrap; }
}
