/* Home page — hero, chakra wheel, interface tabs, services/shop preview, CTA band */

.hero { position: relative; padding: 80px 24px 60px; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,122,26,0.10), transparent 55%),
              radial-gradient(circle at 10% 80%, rgba(212,175,55,0.12), transparent 50%);
  pointer-events: none;
}
.hero-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; position: relative; }
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; } }

.hero h1 { font-size: 48px; line-height: 1.15; color: var(--night); margin-bottom: 20px; font-weight: 600; }
.hero h1 em { font-style: normal; color: var(--saffron-deep); }
.hero p.lede { font-size: 17px; color: var(--ink-soft); max-width: 480px; margin-bottom: 30px; line-height: 1.65; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-family: 'Cinzel', serif; font-size: 24px; color: var(--night); }
.hero-stats span { font-size: 12.5px; color: var(--ink-soft); letter-spacing: .5px; }

/* Chakra wheel */
.chakra-stage { position: relative; width: 100%; aspect-ratio: 1/1; max-width: 480px; margin: 0 auto; perspective: 1400px; }
.chakra-glow { position: absolute; inset: 6%; border-radius: 50%; background: radial-gradient(circle, rgba(255,178,122,0.55), rgba(212,175,55,0.15) 55%, transparent 75%); filter: blur(18px); animation: pulseGlow 5s ease-in-out infinite; }
@keyframes pulseGlow { 0%, 100% { opacity: .7; transform: scale(1); } 50% { opacity: 1; transform: scale(1.06); } }
.chakra-spin-wrap { position: absolute; inset: 0; transform-style: preserve-3d; animation: chakraSpin 22s linear infinite; }
@keyframes chakraSpin { 0% { transform: rotateX(58deg) rotateZ(0deg); } 100% { transform: rotateX(58deg) rotateZ(360deg); } }
.chakra-stage:hover .chakra-spin-wrap { animation-play-state: paused; }
.chakra-disc { position: absolute; inset: 0; border-radius: 50%; }
.chakra-disc svg { width: 100%; height: 100%; display: block; }
.chakra-orbit { position: absolute; inset: -6%; border-radius: 50%; border: 1px dashed rgba(212,175,55,0.45); transform-style: preserve-3d; animation: chakraSpin 34s linear infinite reverse; }
.planet { position: absolute; width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--saffron)); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 13px; font-weight: 700; box-shadow: 0 4px 12px rgba(232,93,4,0.4); }
.chakra-center-label { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; color: var(--night); z-index: 5; }
.chakra-center-label .om { font-size: 34px; color: var(--saffron-deep); font-family: 'Cinzel', serif; }
.chakra-center-label span { display: block; font-size: 11px; letter-spacing: 2px; color: var(--ink-soft); margin-top: 2px; text-transform: uppercase; }

/* Sections */
.section { padding: 80px 24px; }
.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.eyebrow { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--saffron-deep); font-weight: 600; margin-bottom: 10px; display: block; }
.section-head h2 { font-size: 34px; color: var(--night); font-weight: 600; margin-bottom: 12px; }
.section-head p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.6; }
.section-alt { background: var(--white); }

/* Interfaces tabs */
.tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; }
.tab-btn { padding: 12px 22px; border-radius: 999px; border: 1.5px solid rgba(43,27,46,0.15); background: var(--white); font-weight: 600; font-size: 14px; color: var(--ink-soft); cursor: pointer; transition: all .2s ease; font-family: inherit; }
.tab-btn.active { background: linear-gradient(135deg, var(--saffron), var(--saffron-deep)); color: #fff; border-color: transparent; box-shadow: 0 8px 18px rgba(232,93,4,0.3); }
.tab-panels { max-width: 1000px; margin: 0 auto; }
.tab-panel { display: none; }
.tab-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; }
@media (max-width: 800px) { .tab-panel.active { grid-template-columns: 1fr; } }

.mock-card { background: var(--night); border-radius: var(--radius); padding: 22px; color: #fff; box-shadow: var(--shadow); }
.mock-card .mock-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.mock-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--saffron); display: inline-block; margin-right: 6px; }
.mock-row { display: flex; justify-content: space-between; align-items: center; background: rgba(255,255,255,0.06); border-radius: 10px; padding: 12px 14px; margin-bottom: 10px; font-size: 13px; }
.mock-row .tag { background: var(--saffron); color: #fff; font-size: 10.5px; padding: 3px 10px; border-radius: 999px; }
.tab-copy h3 { font-size: 24px; color: var(--night); margin-bottom: 12px; }
.tab-copy p { color: var(--ink-soft); font-size: 15px; line-height: 1.65; margin-bottom: 18px; }
.tab-copy ul { list-style: none; }
.tab-copy li { font-size: 14px; color: var(--ink); margin-bottom: 10px; padding-left: 26px; position: relative; }
.tab-copy li::before { content: '✦'; position: absolute; left: 0; color: var(--saffron-deep); }

/* Services preview */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
@media (max-width: 800px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .services-grid { grid-template-columns: 1fr; } }
.service-card { background: var(--white); border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow); transition: transform .25s ease, box-shadow .25s ease; border: 1px solid rgba(43,27,46,0.05); }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 18px 36px rgba(43,27,46,0.16); }
.service-icon { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg, var(--saffron-light), var(--saffron)); display: flex; align-items: center; justify-content: center; font-size: 24px; color: #fff; margin-bottom: 16px; }
.service-card h3 { font-size: 17px; color: var(--night); margin-bottom: 8px; font-family: 'Poppins', sans-serif; font-weight: 600; }
.service-card p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; }

/* Shop preview grid */
.shop-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; max-width: 1200px; margin: 0 auto; }
@media (max-width: 960px) { .shop-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .shop-grid { grid-template-columns: 1fr; } }
.product-card { background: var(--cream); border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(43,27,46,0.06); transition: transform .25s ease; }
.product-card:hover { transform: translateY(-4px); }
.product-img { height: 150px; display: flex; align-items: center; justify-content: center; font-size: 44px; background: linear-gradient(135deg, var(--cream-2), #fff); }
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-body { padding: 16px 18px 20px; }
.product-body .cat { font-size: 11px; color: var(--saffron-deep); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; }
.product-body h4 { font-size: 15px; color: var(--night); margin: 6px 0 4px; font-weight: 600; }
.product-body .price { font-size: 15px; font-weight: 700; color: var(--night); }
.product-body .price span { font-size: 12px; color: var(--ink-soft); text-decoration: line-through; font-weight: 400; margin-left: 6px; }
.product-body .btn { width: 100%; justify-content: center; margin-top: 12px; padding: 10px; font-size: 13px; }

/* CTA band */
.cta-band { background: linear-gradient(120deg, var(--night), var(--night-2)); border-radius: 24px; max-width: 1100px; margin: 0 auto; padding: 56px 40px; display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; color: #fff; position: relative; overflow: hidden; }
.cta-band::after { content: ''; position: absolute; right: -60px; top: -60px; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle, rgba(255,122,26,0.35), transparent 70%); }
.cta-band h3 { font-size: 26px; margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,0.7); font-size: 14.5px; }

/* Legal notice */
.copyright-legal-notice { background: #FFF0F0; border-left: 4px solid #D32F2F; padding: 16px; border-radius: 8px; font-size: 12.5px; color: #2B1B2E; line-height: 1.6; margin: 40px auto; max-width: 1100px; }
