/* ═══════════════════════════════════════
   ARit — home.css
   Homepage-specific styles only.
   Requires shared.css to be loaded first.
   ═══════════════════════════════════════ */

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 140px 64px 100px;
  position: relative; overflow: hidden;
  text-align: center;
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(201,150,58,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,150,58,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 100%);
}
.hero-glow {
  position: absolute; top: -10%; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(ellipse, rgba(201,150,58,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 860px; margin: 0 auto; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,150,58,0.1);
  border: 1px solid rgba(201,150,58,0.25);
  color: var(--gold-lt); font-size: 11px; font-weight: 600;
  padding: 6px 18px; border-radius: 30px;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 40px;
  animation: fadeUp 0.8s ease both;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-lt);
  animation: blink 2s infinite;
}
.hero-eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 18px;
  animation: fadeUp 0.8s 0.05s ease both;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 8.5vw, 104px);
  font-weight: 300; line-height: 1.02;
  color: var(--white); margin-bottom: 28px;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero-title strong {
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt), var(--gold-pale));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(15px, 2vw, 19px);
  color: var(--muted); line-height: 1.75;
  max-width: 560px; margin: 0 auto 52px;
  font-weight: 300;
  animation: fadeUp 0.8s 0.18s ease both;
}
.hero-sub strong { color: var(--gold-lt); font-weight: 500; }

.hero-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap;
  animation: fadeUp 0.8s 0.26s ease both;
}

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: fadeUp 0.8s 0.5s ease both;
}
.scroll-hint-text { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100%{opacity:0.3;} 50%{opacity:1;} }

/* ── PRODUCTS ── */
.products-label { text-align: center; margin-bottom: 72px; }

.products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

.product-card {
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.07);
  background: linear-gradient(155deg, rgba(30,45,80,0.6), rgba(13,27,53,0.8));
  padding: 40px 32px 36px;
  position: relative; overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
  cursor: pointer; text-decoration: none; display: block;
  backdrop-filter: blur(8px);
}
.product-card:hover { transform: translateY(-10px); border-color: rgba(201,150,58,0.35); box-shadow: 0 32px 64px rgba(0,0,0,0.5); }
.product-card:hover .product-arrow { transform: translateX(5px); }
.product-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(201,150,58,0.08), transparent 70%); opacity: 0; transition: opacity 0.35s; }
.product-card:hover::before { opacity: 1; }

.product-status {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 20px; margin-bottom: 28px;
}
.status-live { background: rgba(45,106,79,0.2); color: #52B788; border: 1px solid rgba(82,183,136,0.3); }
.status-soon { background: rgba(201,150,58,0.1); color: var(--gold); border: 1px solid rgba(201,150,58,0.25); }
.status-dot  { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.status-live .status-dot { animation: blink 2s infinite; }

.product-icon-wrap {
  width: 64px; height: 64px; border-radius: 18px;
  background: rgba(201,150,58,0.1); border: 1px solid rgba(201,150,58,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; margin-bottom: 22px;
  transition: all 0.3s;
}
.product-card:hover .product-icon-wrap { background: rgba(201,150,58,0.18); border-color: rgba(201,150,58,0.4); transform: scale(1.05); }

.product-name { font-family: 'Cormorant Garamond', serif; font-size: 34px; font-weight: 700; color: var(--white); margin-bottom: 6px; line-height: 1; }
.product-name span { color: var(--gold-lt); }
.product-vertical { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.product-desc { font-size: 13.5px; color: var(--muted); line-height: 1.68; margin-bottom: 32px; }
.product-features { display: flex; flex-direction: column; gap: 9px; margin-bottom: 32px; }
.product-feature { display: flex; align-items: flex-start; gap: 9px; font-size: 12.5px; color: rgba(255,255,255,0.55); line-height: 1.4; }
.product-feature::before { content: '✦'; color: var(--gold); font-size: 9px; flex-shrink: 0; margin-top: 3px; }

.product-link-row { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06); }
.product-link-text   { font-size: 13px; font-weight: 600; color: var(--gold-lt); }
.product-coming-text { font-size: 13px; color: var(--faint); }
.product-arrow { font-size: 18px; color: var(--gold); transition: transform 0.25s; }

/* ── STATS BAR ── */
.stats-bar { border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); padding: 72px 64px; position: relative; z-index: 1; }
.stats-bar-grid { display: grid; grid-template-columns: repeat(4,1fr); max-width: 1140px; margin: 0 auto; }
.stats-bar-item { text-align: center; padding: 0 24px; border-right: 1px solid rgba(255,255,255,0.06); }
.stats-bar-item:last-child { border-right: none; }
.stats-bar-val { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 700; background: linear-gradient(135deg,var(--gold),var(--gold-lt)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; line-height:1; margin-bottom:8px; }
.stats-bar-label { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ── PLATFORM ── */
.platform-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.platform-list { display: flex; flex-direction: column; gap: 0; margin-top: 40px; }
.platform-item { display: flex; gap: 20px; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,0.06); transition: all 0.25s; cursor: default; }
.platform-item:last-child { border-bottom: none; }
.platform-item:hover .platform-icon { background: rgba(201,150,58,0.2); border-color: rgba(201,150,58,0.4); }
.platform-icon { width: 42px; height: 42px; border-radius: 12px; background: rgba(201,150,58,0.08); border: 1px solid rgba(201,150,58,0.2); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; transition: all 0.25s; }
.platform-title { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 5px; }
.platform-desc  { font-size: 13px; color: var(--muted); line-height: 1.6; }

.platform-card { background: linear-gradient(145deg,#1a2d4a,#0f1f3a); border: 1px solid var(--border); border-radius: 24px; padding: 40px; box-shadow: var(--shadow-card); position: relative; overflow: hidden; }
.platform-card::before { content:''; position:absolute; top:-50px; right:-50px; width:180px; height:180px; background:radial-gradient(circle,rgba(201,150,58,.1),transparent 70%); }
.platform-card-title { font-family:'Cormorant Garamond',serif; font-size:24px; font-weight:700; color:var(--white); margin-bottom:6px; }
.platform-card-sub   { font-size:13px; color:var(--muted); margin-bottom:28px; }
.platform-stat-row   { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.platform-stat { background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.06); border-radius:14px; padding:18px; }
.platform-stat-val   { font-family:'Cormorant Garamond',serif; font-size:36px; font-weight:700; background:linear-gradient(135deg,var(--gold),var(--gold-lt)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; line-height:1; margin-bottom:4px; }
.platform-stat-label { font-size:11px; color:var(--muted); line-height:1.4; }

/* ── CTA ── */
.cta-section { text-align: center; }
.cta-card { max-width:700px; margin:0 auto; background:linear-gradient(145deg,#1a2d4a,#0f1f3a); border:1px solid var(--border); border-radius:28px; padding:72px 56px; position:relative; overflow:hidden; box-shadow:var(--shadow-card); }
.cta-card::before { content:''; position:absolute; bottom:-60px; left:50%; transform:translateX(-50%); width:400px; height:200px; background:radial-gradient(ellipse,rgba(201,150,58,.09),transparent 70%); }
.cta-title { font-family:'Cormorant Garamond',serif; font-size:48px; font-weight:700; color:var(--white); line-height:1.1; margin-bottom:16px; }
.cta-sub   { font-size:16px; color:var(--muted); margin-bottom:40px; line-height:1.65; }
.cta-actions { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
.cta-wa { display:inline-flex; align-items:center; gap:9px; background:#25D366; color:#fff; font-size:15px; font-weight:700; padding:14px 28px; border-radius:50px; text-decoration:none; transition:all .2s; font-family:'DM Sans',sans-serif; box-shadow:0 8px 24px rgba(37,211,102,.28); }
.cta-wa:hover { transform:translateY(-2px); box-shadow:0 12px 32px rgba(37,211,102,.38); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero { padding: 110px 24px 80px; }
  .products-grid { grid-template-columns: 1fr; }
  .stats-bar { padding: 60px 24px; }
  .stats-bar-grid { grid-template-columns: repeat(2,1fr); gap: 40px; }
  .stats-bar-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding-bottom: 40px; }
  .stats-bar-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.06); }
  .platform-wrap { grid-template-columns: 1fr; gap: 48px; }
  .cta-card { padding: 48px 28px; }
}
