/* stelios-ai.com — update pack v3 (AI button + voice read) */
:root{
  --bg:#050507;
  --text:#f2f2f2;
  --muted:#b9b9b9;
  --muted2:#8c8c8c;
  --gold:#d7a84c;
  --gold2:#b57b2a;
  --blue:#4bd2ff;
  --stroke:rgba(255,255,255,.09);
  --stroke2:rgba(255,255,255,.14);
  --shadow:0 18px 60px rgba(0,0,0,.65);
  --radius:18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  color:var(--text);
  background:var(--bg);
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  overflow-x:hidden;
}
a{color:inherit; text-decoration:none}
button{font:inherit; color:inherit; background:none; border:none}

/* Reveal animations (lightweight) */
.reveal{opacity:0; transform:translateY(12px); transition: opacity .65s ease, transform .65s ease}
.reveal.isIn{opacity:1; transform:none}
@media (prefers-reduced-motion: reduce){
  .reveal{opacity:1; transform:none; transition:none}
}

.wrap{width:min(1100px, 92vw); margin:0 auto}

.bg{
  position:fixed; inset:0; z-index:-3;
  background:radial-gradient(700px 400px at 20% 10%, rgba(215,168,76,.10), transparent 55%),
             radial-gradient(800px 500px at 75% 20%, rgba(75,210,255,.10), transparent 60%),
             radial-gradient(1200px 900px at 50% 80%, rgba(215,168,76,.06), transparent 62%),
             linear-gradient(180deg, rgba(0,0,0,.92), rgba(0,0,0,.98));
}
.gridGlow{
  position:absolute; inset:-10%;
  background:
    linear-gradient(to right, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.030) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity:.25;
}
#particles{position:absolute; inset:0; width:100%; height:100%; opacity:.75; z-index:-2}

.top{
  padding:22px 0 10px;
  position:sticky; top:0;
  backdrop-filter: blur(10px);
  background:linear-gradient(180deg, rgba(5,5,7,.88), rgba(5,5,7,.55));
  border-bottom:1px solid rgba(255,255,255,.05);
  z-index:10;
}
.top .wrap{display:flex; align-items:center; justify-content:space-between; gap:16px}
.brand{display:flex; align-items:center; gap:12px}
.mark{
  width:40px; height:40px; border-radius:12px; display:grid; place-items:center;
  background:linear-gradient(180deg, rgba(215,168,76,.18), rgba(181,123,42,.12));
  border:1px solid rgba(215,168,76,.25);
  box-shadow: 0 10px 30px rgba(215,168,76,.10);
  font-weight:700;
}
.brandTitle{font-weight:700}
.brandSub{font-size:12px; color:var(--muted2)}
.nav{display:flex; gap:12px; flex-wrap:wrap; justify-content:flex-end}

.btn{
  border-radius:14px;
  padding:12px 16px;
  display:inline-flex; align-items:center; gap:10px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.03);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
  cursor:pointer;
  font-weight:600;
}
.btn:hover{transform: translateY(-1px); border-color:var(--stroke2); background:rgba(255,255,255,.05); box-shadow: 0 16px 40px rgba(0,0,0,.35)}
.btnGold{border-color: rgba(215,168,76,.32); background: linear-gradient(180deg, rgba(215,168,76,.18), rgba(181,123,42,.10))}
.btnGold:hover{border-color: rgba(215,168,76,.46); box-shadow: 0 16px 45px rgba(215,168,76,.10), 0 18px 55px rgba(0,0,0,.35)}
.btnDark{background:rgba(255,255,255,.02)}

.hero{padding:46px 0 10px}
.heroGrid{display:grid; grid-template-columns: 1.2fr .8fr; gap:26px; align-items:center}
.hero h1{font-size: clamp(28px, 3.2vw, 46px); line-height:1.08; margin:0 0 10px; letter-spacing:-.5px}
.lead{color:var(--muted); margin:0 0 16px; font-size:16px; line-height:1.5}
.laser{
height:2px; width:min(520px, 86%);
  background:linear-gradient(90deg, transparent, rgba(75,210,255,.85), transparent);
  box-shadow: 0 0 26px rgba(75,210,255,.35);
  margin:18px 0 18px; opacity:.9;
  background-size: 400% 100%;
  animation: laserSweep 2.4s linear infinite;
  animation-direction: normal;
  animation-fill-mode: both;
}

.ctaRow{display:flex; gap:12px; flex-wrap:wrap; margin:10px 0 18px}

.photoCard{
  position:relative;
  border-radius: 22px;
  border:1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  /* πιο λαμπερό χρυσό περίγραμμα (ομοιόμορφο γύρω-γύρω) */
  box-shadow:
    0 0 0 1px rgba(215,168,76,.22),
    0 0 22px rgba(215,168,76,.22),
    0 0 70px rgba(215,168,76,.12),
    var(--shadow);
overflow:hidden;
  min-height: 260px;
}
 .photoCard::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:22px;
  border:3px solid rgba(215,168,76,0.95);
  box-shadow:
    0 0 12px rgba(215,168,76,0.55),
    0 0 32px rgba(215,168,76,0.28);
  pointer-events:none;
  z-index:3;
}
.photoGlow{
  position:absolute; inset:-30%;
  background: radial-gradient(circle at 50% 50%, rgba(215,168,76,.32), rgba(215,168,76,.10) 38%, rgba(75,210,255,.10) 58%, transparent 80%);
filter: blur(2px);
  opacity:.9;
  animation: glowFront 3.4s ease-in-out infinite;
 height:100%; padding:18px}
.heroImg{
  width:100%;
  height:100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
  filter: saturate(1.05) contrast(1.03);
}
.photoBadge{
  position:absolute;
  left:30px;
  bottom:28px;
  padding:8px 10px;
  border-radius: 12px;
  font-weight:700;
  font-size:12px;
  letter-spacing:.3px;
  color:rgba(255,255,255,.92);
  background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.10));
  border:1px solid rgba(215,168,76,.20);
  box-shadow: 0 12px 40px rgba(0,0,0,.45);
}

.pulseCard{
  border-radius: 18px;
  border:1px solid rgba(215,168,76,.18);
  background: linear-gradient(180deg, rgba(215,168,76,.10), rgba(255,255,255,.02));
  padding:14px 16px;
  box-shadow: 0 18px 55px rgba(0,0,0,.35);
  max-width: 560px;
}
.pulseLabel{font-size:12px; color:rgba(215,168,76,.95); letter-spacing:.4px; font-weight:700}
.pulseText{font-family:"Noto Serif", serif; font-size:18px; line-height:1.35; margin-top:6px; transition: opacity .35s ease, transform .35s ease}
.pulseHint{margin-top:8px; font-size:12px; color:var(--muted2)}

.features{padding:24px 0 18px}
.featureGrid{display:grid; grid-template-columns: repeat(4, 1fr); gap:18px}
.featureCard{
  text-align:left;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
  padding:18px;
  cursor:pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.featureCard:hover{transform: translateY(-2px); border-color: rgba(255,255,255,.18); background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015))}
.iconBubble{
  width:42px; height:42px; border-radius:14px; display:grid; place-items:center;
  background: linear-gradient(180deg, rgba(215,168,76,.16), rgba(181,123,42,.10));
  border:1px solid rgba(215,168,76,.18);
  box-shadow: 0 14px 40px rgba(215,168,76,.07);
  margin-bottom:10px;
}

.wxGlyph{
  width:28px; height:28px;
  border-radius:10px;
  box-shadow: 0 0 18px rgba(255,200,40,.24);
}
.wxGlyph.sun{
  background: radial-gradient(circle at 30% 30%, #fff2b2, #ffb800 55%, #a96500 100%);
}
.wxGlyph.moon{
  background: radial-gradient(circle at 30% 30%, #f3f7ff, #cdd8ff 55%, #6b79b8 100%);
  box-shadow: 0 0 18px rgba(160,180,255,.18);
  position: relative;
}
.wxGlyph.moon:before{
  content:"";
  position:absolute;
  width:14px; height:14px;
  border-radius:50%;
  left:14px; top:6px;
  background: rgba(0,0,0,.28);
  mix-blend-mode: soft-light;
}

.wxMini{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  padding:8px 0 10px;
  border-top:1px solid rgba(255,255,255,.08);
  margin-top:10px;
}
.wxLeft{min-width:110px}
.wxCity{font-weight:700; font-size:13px; opacity:.92}
.wxTime{font-size:30px; font-weight:850; line-height:1; margin-top:4px}
.wxDesc{opacity:.78; font-size:12px; margin-top:6px}
.wxRight{text-align:right}
.wxTemp{font-size:34px; font-weight:900; line-height:1}
.wxRange{opacity:.78; font-size:12px; margin-top:6px}
.featureCard h3{margin:2px 0 6px; font-size:18px}
.featureCard p{margin:0 0 12px; color:var(--muted); line-height:1.45}
.featureLink{color:rgba(215,168,76,.95); font-weight:700; font-size:13px}
.miniLine{margin-top:10px; color:rgba(255,255,255,.72); font-size:12px; opacity:.9}

.articles{padding:24px 0 66px}
.sectionHead{display:flex; align-items:flex-end; justify-content:space-between; gap:14px; flex-wrap:wrap}
.sectionHead h2{margin:0; font-size:26px}
.sectionHead .sub{color:rgba(255,255,255,.72); font-size:14px; max-width: 560px; line-height:1.35}

.searchRow{display:flex; gap:10px; flex-wrap:wrap; margin:16px 0 8px}
.searchBox{
  flex: 1 1 320px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  padding: 10px 12px;
  display:flex; align-items:center; gap:10px;
}
.searchIcon{opacity:.75}
.searchBox input{width:100%; background:transparent; border:0; outline:none; color:var(--text); font-size:14px}
.selectBox select{
  height:44px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color:var(--text);
  padding: 0 12px;
  outline:none;
}
.hintRow{color:var(--muted2); font-size:12px; margin-bottom:12px}

.cards{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
.postCard{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.01));
  padding:16px;
  box-shadow: 0 18px 60px rgba(0,0,0,.42);
  transition: transform .18s ease, border-color .18s ease;
}
.postCard:hover{transform: translateY(-2px); border-color: rgba(215,168,76,.18)}

.postHead{
  display:grid;
  grid-template-columns: auto 1fr;
  gap:12px;
  align-items:center;
  margin-bottom:10px;
}

.postThumb{
  width:72px;
  height:72px;
  border-radius: 14px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 14px 40px rgba(0,0,0,.45);
}

.postThumb img{width:100%; height:100%; object-fit:cover; display:block}

.postHeadText{min-width:0}
.postTitle{font-weight:700; margin:0 0 8px; line-height:1.25}
.postMeta{color:var(--muted2); font-size:12px; margin-bottom:10px}
.postExcerpt{color:var(--muted); font-size:13px; line-height:1.5; margin:0 0 12px}
.postActions{display:flex; gap:10px; flex-wrap:wrap; align-items:center}
.linkGold{color:rgba(215,168,76,.95); font-weight:700; font-size:13px}
.iconBtn{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  cursor:pointer;
  font-weight:700;
  font-size:12px;
}
.iconBtn:hover{border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.04)}
.iconBtnGold{border-color: rgba(215,168,76,.18)}
.iconBtnGold:hover{border-color: rgba(215,168,76,.30)}
.moreRow{display:flex; justify-content:center; margin-top:18px}

/* Floating buttons */
.fabStack{
  position:fixed;
  right:18px;
  bottom:18px;
  display:flex;
  flex-direction:column;
  gap:10px;
  z-index:12;
}
.fab{
  width:54px; height:54px; border-radius:18px;
  border:1px solid rgba(215,168,76,.28);
  background: linear-gradient(180deg, rgba(215,168,76,.22), rgba(181,123,42,.12));
  box-shadow: 0 18px 60px rgba(0,0,0,.55), 0 0 22px rgba(215,168,76,.12);
  color:rgba(255,255,255,.92);
  font-size:20px;
  display:grid; place-items:center;
  cursor:pointer;
  transition: transform .18s ease, border-color .18s ease;
}
.fab:hover{transform: translateY(-2px); border-color: rgba(215,168,76,.42)}
.fabAi{
  border-color: rgba(75,210,255,.22);
  background: linear-gradient(180deg, rgba(75,210,255,.12), rgba(255,255,255,.02));
}
.fabAi:hover{border-color: rgba(75,210,255,.36)}

/* Modals */
.modal{position:fixed; inset:0; display:none; z-index:50}
.modal.isOpen{display:block}
.modalBackdrop{position:absolute; inset:0; background:rgba(0,0,0,.62); backdrop-filter: blur(6px)}
.modalPanel{
  position:relative;
  width:min(740px, 92vw);
  margin: 8vh auto;
  border-radius: 20px;
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(15,15,18,.88), rgba(10,10,12,.88));
  box-shadow: 0 26px 90px rgba(0,0,0,.70);
  overflow:hidden;
}
.modalTop{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 16px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.modalTitle{font-weight:800; letter-spacing:.2px}
.modalClose{
  width:38px; height:38px; border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  cursor:pointer;
}
.modalClose:hover{border-color: rgba(255,255,255,.18)}
.modalBody{padding:14px 16px; color:rgba(255,255,255,.86); line-height:1.55; max-height:60vh; overflow:auto}
.modalBody .q{color:rgba(215,168,76,.95); font-weight:800; margin-bottom:10px}
.modalBody .a{font-family:"Noto Serif", serif; font-size:16px}
.modalActions{padding:0 16px 16px; display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end}

/* Article inside modal */
.articleHero{margin: 0 0 12px}
.articleHero img{width:100%; height:auto; display:block; border-radius:16px; border:1px solid rgba(255,255,255,.10); box-shadow: 0 18px 60px rgba(0,0,0,.45)}
.articleMeta{color:var(--muted2); font-size:12px; margin: 6px 0 14px}
.articleContent{font-family:"Noto Serif", serif; font-size:16px; line-height:1.7}
.articleContent p{margin: 0 0 12px}
.articleContent h1,.articleContent h2,.articleContent h3{font-family:"Inter", system-ui; line-height:1.25; margin: 18px 0 10px}
.articleContent a{color: rgba(215,168,76,.95)}
.articleContent img{max-width:100%; height:auto; border-radius:14px; border:1px solid rgba(255,255,255,.10)}
.articleContent blockquote{margin: 12px 0; padding: 10px 12px; border-left: 3px solid rgba(215,168,76,.55); background: rgba(255,255,255,.02); border-radius: 12px}
.articleFoot{margin-top: 14px}

/* AI modal */
.aiBody{padding:12px 14px 14px}
.aiInfo{
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  border-radius: 18px;
  padding:12px;
}
.aiNote{color:rgba(255,255,255,.82); font-size:13px; line-height:1.45}
.aiKeyRow{display:flex; gap:10px; margin-top:10px; flex-wrap:wrap}
.aiKeyRow input{
  flex:1 1 260px;
  height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color:var(--text);
  padding:0 12px;
  outline:none;
}
.aiTiny{margin-top:10px; color:var(--muted2); font-size:12px; line-height:1.35}
.aiChat{
  margin-top:12px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.20);
  border-radius: 18px;
  padding:12px;
  min-height: 220px;
  max-height: 360px;
  overflow:auto;
}
.msg{padding:10px 12px; border-radius: 16px; margin:8px 0; border:1px solid rgba(255,255,255,.08)}
.msg.user{background: rgba(75,210,255,.06); border-color: rgba(75,210,255,.14)}
.msg.ai{background: rgba(215,168,76,.06); border-color: rgba(215,168,76,.14)}
.msg .who{font-size:11px; color:var(--muted2); margin-bottom:6px; font-weight:800; letter-spacing:.3px}
.msg .txt{white-space:pre-wrap; color:rgba(255,255,255,.90); line-height:1.5}

.aiComposer{margin-top:12px}
.aiComposer textarea{
  width:100%;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color:var(--text);
  padding:12px;
  outline:none;
  resize: vertical;
}
.aiButtons{display:flex; gap:10px; justify-content:flex-end; flex-wrap:wrap; margin-top:10px}

.foot{padding:28px 0 34px; border-top:1px solid rgba(255,255,255,.06); background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.25))}
.footInner{display:flex; align-items:center; justify-content:space-between; gap:10px; flex-wrap:wrap}
.footSmall{color:var(--muted2); font-size:12px}

.srOnly{position:absolute !important; width:1px !important; height:1px !important; padding:0 !important; margin:-1px !important; overflow:hidden !important; clip:rect(0,0,0,0) !important; white-space:nowrap !important; border:0 !important}

@media (max-width: 980px){
  .heroGrid{grid-template-columns: 1fr}
  .featureGrid{grid-template-columns: 1fr}
  .cards{grid-template-columns: 1fr}
  .modalPanel{margin: 7vh auto}
  .photoBadge{left:24px; bottom:22px}
  .postThumb{width:64px; height:64px}
}

/* v11 — Mood Reader + Explore polish + Contact */
.btnGlow{
  position:relative;
}
.btnGlow::after{
  content:"";
  position:absolute;
  inset:-10px;
  border-radius: inherit;
  background: radial-gradient(circle at 40% 35%, rgba(215,168,76,.28), transparent 55%),
              radial-gradient(circle at 65% 70%, rgba(75,210,255,.12), transparent 58%);
  filter: blur(10px);
  opacity:0;
  transition: opacity .18s ease;
  z-index:-1;
}
.btnGlow:hover::after{opacity:1}

.mood{padding:18px 0 18px}
.moodGrid{display:flex; gap:10px; flex-wrap:wrap; margin:14px 0 10px}
.moodBtn{
  border-radius: 14px;
  padding:12px 14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  cursor:pointer;
  font-weight:700;
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}
.moodBtn:hover{transform: translateY(-1px); border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.04)}
.moodBtn.isActive{
  border-color: rgba(215,168,76,.35);
  background: linear-gradient(180deg, rgba(215,168,76,.14), rgba(255,255,255,.02));
}
.moodBtn.isFlash{animation: moodFlash .55s ease}
@keyframes moodFlash{
  0%{box-shadow: 0 0 0 rgba(215,168,76,0)}
  50%{box-shadow: 0 0 0 6px rgba(215,168,76,.18)}
  100%{box-shadow: 0 0 0 rgba(215,168,76,0)}
}
.moodOut{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  padding:14px 16px;
  color: rgba(255,255,255,.88);
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
  font-family: "Noto Serif", serif;
  line-height:1.45;
}

.explore{padding:4px 0 22px}
.exploreCard{
  border-radius: 20px;
  border:1px solid rgba(215,168,76,.18);
  background: linear-gradient(180deg, rgba(215,168,76,.08), rgba(255,255,255,.015));
  box-shadow: 0 22px 70px rgba(0,0,0,.45);
  padding:16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.exploreStar{
  width:42px; height:42px;
  border-radius:14px;
  display:grid; place-items:center;
  border:1px solid rgba(215,168,76,.22);
  background: rgba(215,168,76,.10);
  box-shadow: 0 18px 55px rgba(215,168,76,.08);
  color: rgba(215,168,76,.95);
  flex: 0 0 auto;
}
.exploreText{flex: 1 1 auto; min-width: 220px}
.exploreTitle{font-weight:800; letter-spacing:.2px}
.exploreSub{color: var(--muted); font-size:13px; margin-top:4px; line-height:1.5}

.contact{padding:0 0 68px}
.contactGrid{display:grid; grid-template-columns: 1.2fr .8fr; gap:14px; margin-top:14px}
.contactCard{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  padding:16px;
  box-shadow: 0 18px 60px rgba(0,0,0,.42);
}
.contactTitle{font-weight:800; margin-bottom:6px}
.contactText{color: var(--muted); font-size:13px; line-height:1.5; margin-bottom:12px}
.contactForm{display:grid; gap:10px}
.contactForm input,
.contactForm textarea{
  width:100%;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.28);
  color: var(--text);
  padding:12px 12px;
  outline:none;
}
.contactForm textarea{resize: vertical; min-height: 110px}
.contactLinks{display:grid; gap:10px}

@media (max-width: 860px){
  .heroGrid{grid-template-columns: 1fr}
  .featureGrid{grid-template-columns: 1fr}
  .cards{grid-template-columns: 1fr}
  .exploreCard{flex-direction:column; align-items:flex-start}
  .contactGrid{grid-template-columns: 1fr}
}

/* ======================
   LIGHT MODE (white mode)
   ====================== */
html[data-theme="light"]{
  --bg0:#f6f4ee;
  --bg1:#ffffff;
  --card: rgba(255,255,255,.78);
  --card2: rgba(255,255,255,.92);
  --text:#141414;
  --muted:#2b2b2b;
  --muted2:#4a4a4a;
  --stroke: rgba(0,0,0,.12);
  --stroke2: rgba(0,0,0,.18);
  --shadow: 0 12px 40px rgba(0,0,0,.12);
}

html[data-theme="light"] .bg{
  background:
    radial-gradient(1200px 700px at 20% 0%, rgba(255,208,92,.45), transparent 60%),
    radial-gradient(900px 600px at 85% 15%, rgba(99,170,255,.22), transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
}

html[data-theme="light"] .gridGlow{ opacity:.25; filter: saturate(1.05); }
html[data-theme="light"] .btnDark{ background: rgba(255,255,255,.55); }
html[data-theme="light"] .btnDark:hover{ background: rgba(255,255,255,.75); }
html[data-theme="light"] .modalBackdrop{ background: rgba(15,15,15,.40); }
html[data-theme="light"] .modalPanel{
  background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(248,247,244,.92));
  border-color: rgba(0,0,0,.10);
}
html[data-theme="light"] .modalTop{ border-bottom-color: rgba(0,0,0,.10); }
html[data-theme="light"] .modalTitle{ color: rgba(15,17,21,.96); }
html[data-theme="light"] .modalClose{ border-color: rgba(0,0,0,.14); background: rgba(0,0,0,.04); }
html[data-theme="light"] .modalBody{ color: rgba(15,17,21,.92); }
html[data-theme="light"] .modalBody .q{ color: rgba(138,92,20,.96); }
html[data-theme="light"] .articleMeta{ color: rgba(15,17,21,.62); }
html[data-theme="light"] .articleContent a{ color: rgba(138,92,20,.96); }
html[data-theme="light"] .articleHero img,
html[data-theme="light"] .articleContent img{ border-color: rgba(0,0,0,.10); }
html[data-theme="light"] .articleContent blockquote{
  background: rgba(0,0,0,.035);
  border-left-color: rgba(138,92,20,.45);
}
html[data-theme="light"] .chatMsg.ai{ background: rgba(255,255,255,.72); border-color: rgba(0,0,0,.10); }
html[data-theme="light"] .chatMsg.me{ background: rgba(255,243,210,.86); border-color: rgba(190,130,10,.22); }
html[data-theme="light"] .chatInput textarea{
  background: rgba(255,255,255,.78);
  border-color: rgba(0,0,0,.14);
  color: #141414;
}
html[data-theme="light"] .chatInput textarea::placeholder{ color: rgba(20,20,20,.55); }
html[data-theme="light"] .chatInput textarea:focus{
  outline: none;
  border-color: rgba(190,130,10,.35);
  box-shadow: 0 0 0 3px rgba(190,130,10,.18);
}
html[data-theme="light"] .contactCard{ border-color: rgba(0,0,0,.10); background: rgba(255,255,255,.70); box-shadow: 0 18px 60px rgba(0,0,0,.12); }
html[data-theme="light"] .contactForm input, html[data-theme="light"] .contactForm textarea{
  background: rgba(255,255,255,.78);
  border-color: rgba(0,0,0,.12);
}

html[data-theme="light"] .moodBtn{
  color: rgba(15,17,21,.96) !important;
  background: rgba(0,0,0,.05);
  border-color: rgba(0,0,0,.16);
}
html[data-theme="light"] .moodBtn:hover{ background: rgba(0,0,0,.07); }
html[data-theme="light"] .moodBtn.active{
  background: rgba(241,220,160,.85);
  border-color: rgba(170,130,40,.40);
  color: rgba(15,17,21,.95);
}


/* i18n note under Articles */
.sub.note{
  margin-top:8px;
  font-size:13px;
  color:rgba(255,255,255,.68);
}

/* AI FAB: yellow "AI" badge */
.fabAi{
  border-color: rgba(255,210,0,.28);
  background: linear-gradient(135deg,#ffd84d,#ffb800);
  color:#000;
  font-weight:800;
  font-size:16px;
  letter-spacing:.6px;
  box-shadow: 0 18px 60px rgba(0,0,0,.55), 0 0 22px rgba(255,210,0,.22);
}

/* Mobile-only orange accents for primary CTAs */
@media (max-width: 768px){
  #btnExplore,
  a.btnGold{
    background: linear-gradient(135deg,#ff8a00,#ffb347) !important;
    border-color: rgba(255,138,0,.45) !important;
    color:#101010 !important;
    box-shadow:0 10px 26px rgba(255,138,0,.22) !important;
  }

  #btnExplore:active,
  a.btnGold:active{
    transform:scale(0.98);
    box-shadow:0 8px 18px rgba(255,138,0,.38) !important;
  }
}

/* Hero daily thought */
.heroThoughtCard{
  margin-top:14px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  padding:14px 14px 12px;
  box-shadow: 0 18px 60px rgba(0,0,0,.42);
}
.heroThoughtTop{display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:8px}
.heroThoughtLabel{font-size:12px; color:var(--muted2); letter-spacing:.08em; text-transform:uppercase}
.heroThoughtText{font-family:"Noto Serif", serif; font-size:16px; line-height:1.45; color:var(--text); opacity:.96}
.miniBtn{
  border-radius:12px;
  padding:8px 10px;
  border:1px solid rgba(215,168,76,.28);
  background: rgba(215,168,76,.10);
  cursor:pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
  font-weight:650;
  font-size:12px;
}
.miniBtn:hover{transform: translateY(-1px); border-color: rgba(215,168,76,.45); box-shadow:0 12px 30px rgba(215,168,76,.10)}

.articlesNote{margin-top:6px; color:var(--muted2); font-size:12px}

@media (max-width: 980px){
  .featureGrid{grid-template-columns: repeat(2, 1fr)}
}
@media (max-width: 560px){
  .featureGrid{grid-template-columns: 1fr}
}

.labBtns{display:flex; flex-wrap:wrap; gap:8px; margin-top:10px}
.pill{
  border-radius:999px;
  padding:8px 10px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  cursor:pointer;
  font-size:12px;
  font-weight:650;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.pill:hover{transform: translateY(-1px); border-color: rgba(215,168,76,.18); box-shadow:0 14px 30px rgba(0,0,0,.35)}


/* AI-friendly FAQ (SEO/Discoverability) */
#ai-faq{
  margin-top: 48px;
  padding: 18px 18px;
  border: 1px solid rgba(212,175,55,.25);
  border-radius: 14px;
  background: rgba(255,255,255,.02);
}
#ai-faq h2{
  margin: 0 0 10px 0;
  font-size: 18px;
  letter-spacing: .2px;
}
#ai-faq h3{
  margin: 14px 0 6px 0;
  font-size: 14px;
  opacity: .95;
}
#ai-faq p{
  margin: 0 0 8px 0;
  opacity: .85;
  line-height: 1.55;
}


/* --- 10/10 polish: mini about tooltip + featured start --- */
.photoCard{ position: relative; }
#aboutTrigger{ cursor: pointer; }
.miniAbout{
  position:absolute;
  left:18px;
  right:18px;
  bottom:64px;
  padding:12px 12px;
  border-radius: 16px;
  border:1px solid rgba(215,168,76,.22);
  background: linear-gradient(180deg, rgba(10,10,10,.86), rgba(10,10,10,.72));
  box-shadow: 0 18px 60px rgba(0,0,0,.55);
  backdrop-filter: blur(10px);
  transform: translateY(8px);
  opacity:0;
  pointer-events:none;
  transition: opacity .18s ease, transform .18s ease;
}
.photoCard.isAboutOpen .miniAbout{
  opacity:1;
  transform: translateY(0);
  pointer-events:auto;
}
.miniAboutTitle{
  font-weight:700;
  letter-spacing:.2px;
  margin-bottom:6px;
}
.miniAboutText{
  color: rgba(255,255,255,.85);
  font-size: 13px;
  line-height: 1.35;
}

/* Featured (Articles) */
.featured{
  margin: 10px 0 14px 0;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
}
.featuredHead{
  font-weight:700;
  margin-bottom:10px;
  color: rgba(255,255,255,.92);
}
.featuredList{
  display:grid;
  gap:10px;
}
.featuredItem{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(215,168,76,.14);
  background: rgba(0,0,0,.18);
}
.featuredTitle{
  font-weight:600;
  color: rgba(255,255,255,.92);
  font-size: 14px;
  line-height:1.25;
}
.featuredBtns{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.featuredBtns .iconBtn{ white-space:nowrap; }
/* --- end polish --- */


@keyframes laserSweep{
  0%{background-position:-200% 50%}
  100%{background-position:200% 50%}
}
@keyframes goldSpin{to{transform:rotate(360deg)}}
@keyframes glowPulse{0%,100%{opacity:.95;transform:scale(1)}50%{opacity:1;transform:scale(1.03)}}

@keyframes glowFront{0%{opacity:.55;filter:blur(18px);transform:scale(.98)}50%{opacity:1;filter:blur(6px);transform:scale(1.05)}100%{opacity:.55;filter:blur(18px);transform:scale(.98)}}


.photoCard > *{position:relative; z-index:1}
.photoGlow{z-index:0}

/* --- GOLD FINAL overrides (hotfix 2) --- */
.photoCard{ padding:0 !important; }
.photoGlow{ padding:0 !important; height:100%; width:100%; display:block; }
.heroImg{ border-radius:22px !important; border:none !important; }
/* Laser slower, one-way left→right */
.laser{ animation: laserSweep 6s linear infinite !important; }

