/* ============================================================
   DOSYA SORUMLULUGU — features-13-orange-hero-card.css
   ------------------------------------------------------------
   NE YAPAR   : Ana ekran turuncu kalan-kalori karti (grain doku, orb'lar).
   KAYNAK     : v3.12.0'da bolundu — kurallar birebir tasindi,
                hicbir kural yeniden yazilmadi veya siralanmadi.
   SIRA       : index.html'deki <link> sirasi kaskadi belirler.
                Bu dosyanin sirasini DEGISTIRME.
   ------------------------------------------------------------
   Tam dosya listesi ve sira: BAGIMLILIK-HARITASI.md
   ============================================================ */

/* ============================================================
   ORANGE HERO CARD (home)
   ============================================================ */
.hero-card {
  margin: 12px 14px 10px;
  background: linear-gradient(145deg, #FF8C35 0%, #E85D00 45%, #C44800 100%);
  border-radius: var(--radius);
  padding: 16px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(232,93,0,0.20), 0 -2px 12px rgba(232,93,0,0.10);
}
/* Grain texture */
.hero-card::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.18;
  pointer-events: none;
  z-index: 0;
}
/* Top-right orb */
.hero-card::after {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.14) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
/* Bottom-left orb — extra depth */
.hero-card .hero-orb-bl {
  position: absolute;
  bottom: -30px; left: -20px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,0,0,0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-greeting {
  font-size: 11px;
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}
.hero-kcal {
  font-size: 52px;
  font-weight: 900;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 2px;
  position: relative;
  z-index: 1;
}
.hero-label {
  font-size: 10px;
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.hero-prog-bg {
  width: 100%;
  height: 5px;
  background: rgba(255,255,255,0.18);
  border-radius: 99px;
  margin-bottom: 14px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.hero-prog-fill {
  height: 100%;
  background: #fff;
  border-radius: 99px;
  transition: width 0.5s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 0 10px rgba(255,255,255,0.7);
}
.hero-macros {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
  position: relative;
  z-index: 1;
}
.hero-macro {
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xs);
  padding: 7px 6px;
  text-align: center;
  backdrop-filter: blur(4px);
}
.hero-macro-val {
  font-size: 16px;
  font-weight: 800;
  font-family: 'JetBrains Mono', monospace;
  color: #fff;
  letter-spacing: -0.5px;
}
.hero-macro-name {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.65;
  margin-top: 2px;
}
.hero-macro-diff {
  font-size: 10px;
  font-weight: 600;
  margin-top: 2px;
  opacity: 0.85;
}

