/* ==========================================================================
   Talim Solar — custom styles
   Tokens: primary #E7A81A / primary-dark #C77D0A / ink #1F2937 / cream #FFFBF2
   ========================================================================== */

:root {
  --primary: #E7A81A;
  --primary-dark: #C77D0A;
  --primary-light: #F4C752;
  --primary-deep: #8B5A0F;
  --gold-shine: linear-gradient(135deg, #F9D77E 0%, #E7A81A 45%, #B5720C 100%);
  --ink: #1F2937;
  --cream: #FFFBF2;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-dark) var(--cream);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
}

/* Faint film-grain layer for material depth — the difference between
   a flat gradient and something that feels manufactured/premium. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--primary), var(--primary-dark));
  border-radius: 10px;
  border: 2px solid var(--cream);
}

::selection {
  background: var(--primary);
  color: #fff;
}

/* Focus visibility for accessibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Tighter, more editorial tracking on display headings at large sizes */
.font-display {
  letter-spacing: -0.015em;
}

/* ============ SIGNATURE MICRO-DETAILS ============ */
/* Gold-foil number/word treatment — the site's recurring "premium" tell,
   used sparingly on hero stats and key figures only. */
.text-gold-foil {
  background: var(--gold-shine);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Eyebrow label with a short hairline tick — replaces the bare uppercase
   label pattern with something that reads as a considered system. */
.eyebrow-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow-gold::before {
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary-light));
  flex-shrink: 0;
}

/* Section divider — thin gold hairline with a center mark, used between
   major sections instead of hard white/cream seams. */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--primary);
}
.section-divider::before,
.section-divider::after {
  content: "";
  height: 1px;
  width: 72px;
  background: linear-gradient(90deg, transparent, rgba(231,168,26,0.55));
}
.section-divider::after {
  background: linear-gradient(90deg, rgba(231,168,26,0.55), transparent);
}
.section-divider i { font-size: 9px; }

.stat-divider {
  width: 1px;
  height: 2.5rem;
  background: linear-gradient(180deg, transparent, rgba(231,168,26,0.5), transparent);
}

/* ============ INTRO: DARK-TO-LIGHT SOLAR REVEAL ============
   The homepage renders normally underneath. This overlay is just a
   dark scrim that gradually fades out (revealing the page as it
   "brightens"), while a glowing sun travels from the bottom-left
   corner to the top-right corner of the screen. */
#introOverlay {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: none; /* JS turns this on only when the intro should play */
  overflow: hidden;
  background: linear-gradient(155deg, #0B0D14 0%, #1F2937 55%, #2A2007 100%);
  opacity: 1;
  transition: opacity 5s ease-out;
}
#introOverlay.intro-brighten {
  opacity: 0;
}
#introOverlay.intro-hidden {
  opacity: 0 !important;
  visibility: hidden;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
body.intro-lock {
  overflow: hidden;
  height: 100vh;
}
#introSkip {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(244,199,82,0.35);
  color: #FFFBF2;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 8px 16px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
#introSkip:hover {
  background: rgba(244,199,82,0.18);
  border-color: rgba(244,199,82,0.6);
  transform: translateY(-1px);
}

/* Glowing sun, starts just off-screen bottom-left and travels to
   just past the top-right corner. Movement uses vw/vh so it scales
   to any viewport size. */
.intro-sun {
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, #FFF6DE 0%, #F9D77E 55%, #E7A81A 100%);
  box-shadow: 0 0 60px 22px rgba(249,215,126,0.55), 0 0 130px 60px rgba(231,168,26,0.25);
  opacity: 0;
  transform: translate(0, 0) scale(0.7);
  z-index: 1;
}
.intro-sun.intro-sun-travel-active {
  animation: introSunTravel 5s cubic-bezier(.32,.6,.24,1) forwards;
}

.intro-caption {
  position: absolute;
  left: 0; right: 0;
  bottom: 12%;
  text-align: center;
  z-index: 2;
  pointer-events: none;
}
.intro-caption p {
  display: inline-block;
  font-family: 'Fraunces', serif;
  font-size: clamp(1.4rem, 3.2vw, 2.4rem);
  color: #FFFBF2;
  font-weight: 500;
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateY(10px);
  animation: introCaptionIn 1s ease-out 3s forwards;
}

@keyframes introSunTravel {
  0%   { transform: translate(0, 0) scale(0.7); opacity: 0; }
  12%  { opacity: 1; }
  100% { transform: translate(130vw, -130vh) scale(1.15); opacity: 0.85; }
}
@keyframes introCaptionIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  #introOverlay { display: none !important; }
}

/* ============ NAVBAR STATES ============ */
#navbar {
  background: transparent;
}
#navbar.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 30px -10px rgba(31, 41, 55, 0.15);
  border-bottom: 1px solid rgba(231,168,26,0.16);
}

#navbar #navBrand { color: #ffffff; }
#navbar.scrolled #navBrand { color: var(--ink); }

.nav-link { color: rgba(255,255,255,0.9); position: relative; }
#navbar.scrolled .nav-link { color: var(--ink); }
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.nav-link.active {
  color: var(--primary) !important;
}
#navbar:not(.scrolled) .nav-link.active {
  color: var(--primary-light) !important;
}

#navbar #menuBtn { color: #fff; }
#navbar.scrolled #menuBtn { color: var(--ink); }

.mobile-link {
  transition: color 0.25s ease, padding-left 0.25s ease;
}
.mobile-link:hover {
  color: var(--primary);
  padding-left: 6px;
}

/* ============ HERO ============ */
#home::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  box-shadow: inset 0 0 180px 40px rgba(10,8,4,0.4);
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 1;
}
.hero-blob-1 {
  width: 480px;
  height: 480px;
  top: -120px;
  right: -100px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  animation: floatSlow 12s ease-in-out infinite;
}
.hero-blob-2 {
  width: 320px;
  height: 320px;
  bottom: -80px;
  right: 15%;
  background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
  animation: floatSlow 9s ease-in-out infinite reverse;
}
@keyframes floatSlow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-25px, 30px) scale(1.08); }
}

@keyframes bounceSlow {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}
.animate-bounce-slow {
  animation: bounceSlow 2.4s ease-in-out infinite;
}

/* ============ BUTTON GLOW ============ */
.btn-glow {
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 0 0 rgba(255,255,255,0.3) inset, 0 14px 34px -10px rgba(139,90,15,0.55), 0 3px 10px -3px rgba(20,15,5,0.35);
}
.btn-glow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}
.btn-glow:hover::before {
  transform: translateX(120%);
}

/* ============ ABOUT: OVERLAPPING PHOTO COLLAGE ============ */
.about-collage {
  position: relative;
}
.about-collage-main {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 32px 70px -18px rgba(20,15,10,0.3);
}
.about-collage-accent {
  position: absolute;
  top: -8%;
  left: -10%;
  width: 44%;
  aspect-ratio: 1/1;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: 0 20px 45px -18px rgba(20,15,10,0.35);
  z-index: 2;
}
@media (max-width: 480px) {
  .about-collage-accent {
    top: -6%;
    left: -6%;
    width: 38%;
  }
}

/* ============ ABOUT GALLERY (auto-rotating jobsite photos) ============ */
.about-gallery-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.1s ease;
  z-index: 0;
}
.about-gallery-slide.is-active {
  opacity: 1;
  z-index: 1;
}
.about-gallery-dots {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 20;
  display: flex;
  gap: 7px;
}
.about-gallery-dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.25);
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, width 0.3s ease;
}
.about-gallery-dots button.is-active {
  background: #F4C752;
  border-color: #F4C752;
  width: 20px;
}

/* ============ HOW IT WORKS ============ */
.how-it-works-step {
  position: relative;
  background: #FFFBF2;
  border: 1px solid rgba(31,41,55,0.06);
  border-radius: 1.25rem;
  padding: 2rem 1.5rem;
  text-align: center;
}
.how-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 1rem;
  background: rgba(231,168,26,0.12);
  color: #C77D0A;
  font-size: 1.25rem;
  margin: 0 auto 1.1rem;
}
.how-arrow {
  display: none;
}
@media (min-width: 1024px) {
  .how-arrow {
    display: block;
    position: absolute;
    top: 50%;
    right: -1.85rem;
    transform: translateY(-50%);
    color: rgba(199,125,10,0.5);
    font-size: 1rem;
  }
}
.how-custom-banner {
  margin-top: 2.5rem;
  background: #1F2937;
  border-radius: 1.5rem;
  padding: 1.75rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
.how-custom-banner h4,
.how-custom-banner p {
  color: rgba(255,255,255,0.92);
}
.how-custom-banner p {
  color: rgba(255,255,255,0.65);
}
.how-custom-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 0.9rem;
  background: rgba(244,199,82,0.15);
  color: #F4C752;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* ============ PACKAGE CARDS ============ */
.package-card {
  position: relative;
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 14px 45px -20px rgba(20,15,10,0.28);
  border: 1px solid rgba(31,41,55,0.05);
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s ease, border-color 0.4s ease;
}
.package-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-shine);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s ease;
  z-index: 2;
}
.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px -22px rgba(20,15,10,0.38);
  border-color: rgba(231,168,26,0.25);
}
.package-card:hover::before {
  transform: scaleX(1);
}
.package-card--featured {
  border: 1px solid rgba(231,168,26,0.45);
  box-shadow: 0 20px 55px -22px rgba(139,90,15,0.4);
}
.popular-ribbon {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: var(--gold-shine);
  color: #2A1B04;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 11px;
  border-radius: 999px;
  box-shadow: 0 8px 18px -6px rgba(139,90,15,0.6);
}
.package-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, #f3ede0, #e7dcc4);
}
.package-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(20,15,10,0.35) 100%);
  pointer-events: none;
}
.package-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.package-card:hover .package-img-wrap img {
  transform: scale(1.08);
}
.package-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(20,16,10,0.55);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(244,199,82,0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.25s ease, color 0.25s ease;
}
.learn-more:hover {
  gap: 12px;
  color: var(--primary);
}

/* ============ SOLAR SAVINGS CALCULATOR ============ */
.calc-card {
  background: #fff;
  border: 1px solid rgba(31,41,55,0.06);
  border-radius: 1.75rem;
  padding: 2.25rem;
  box-shadow: 0 14px 45px -20px rgba(20,15,10,0.22);
}

.calc-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 0.6rem;
}

.calc-input {
  width: 100%;
  border: 1px solid rgba(31,41,55,0.14);
  border-radius: 0.9rem;
  padding: 0.85rem 1.1rem;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--cream);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.calc-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(231,168,26,0.18);
  background: #fff;
}

.calc-radio-card {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(31,41,55,0.14);
  border-radius: 0.9rem;
  padding: 0.85rem 1rem;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  background: var(--cream);
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.calc-radio-card i { color: var(--primary-dark); }
.calc-radio-card input {
  accent-color: var(--primary);
  flex-shrink: 0;
}
.calc-radio-card.calc-radio-selected,
.calc-radio-card:has(input:checked) {
  border-color: var(--primary);
  background: rgba(231,168,26,0.09);
  box-shadow: 0 0 0 2px rgba(231,168,26,0.15);
}

.calc-results-card {
  background: linear-gradient(160deg, #fff, #FFFBF2);
  border: 1px solid rgba(231,168,26,0.28);
  border-radius: 1.75rem;
  padding: 2.5rem;
  box-shadow: 0 1px 0 0 rgba(255,255,255,0.5) inset, 0 30px 70px -24px rgba(139,90,15,0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}

.calc-placeholder {
  padding: 2.5rem 0;
}

.calc-stat {
  background: rgba(231,168,26,0.06);
  border: 1px solid rgba(231,168,26,0.16);
  border-radius: 1rem;
  padding: 1rem 1.1rem;
}
.calc-stat-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-deep);
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.calc-stat-value {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.calc-highlight-row {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  border-top: 1px dashed rgba(231,168,26,0.4);
  border-bottom: 1px dashed rgba(231,168,26,0.4);
  padding: 1.25rem 0;
}

@keyframes packagePulse {
  0%, 100% { box-shadow: 0 14px 45px -20px rgba(20,15,10,0.28); }
  50% { box-shadow: 0 0 0 6px rgba(231,168,26,0.4), 0 20px 55px -22px rgba(139,90,15,0.55); }
}
.package-highlight {
  animation: packagePulse 1.1s ease-in-out 2;
  border-color: rgba(231,168,26,0.65) !important;
}

/* ============ WHY CHOOSE US CARDS ============ */
.why-card {
  background: #fff;
  border: 1px solid rgba(31,41,55,0.06);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 55px -22px rgba(139,90,15,0.4);
  border-color: rgba(231,168,26,0.35);
}
.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 1px 0 0 rgba(255,255,255,0.35) inset, 0 10px 25px -8px rgba(231,168,26,0.55);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.why-card:hover .why-icon {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 1px 0 0 rgba(255,255,255,0.35) inset, 0 14px 32px -8px rgba(231,168,26,0.65);
}

/* ============ CTA BANNER ============ */
.cta-banner {
  background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
}
.cta-rays {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 120%, rgba(231,168,26,0.35), transparent 60%),
    repeating-conic-gradient(from 0deg at 50% 120%, rgba(231,168,26,0.06) 0deg 8deg, transparent 8deg 16deg);
  animation: rayRotate 40s linear infinite;
}
@keyframes rayRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ============ CONTACT ============ */
.contact-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid rgba(31,41,55,0.06);
  border-radius: 1.25rem;
  padding: 1.1rem 1.4rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.contact-row::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold-shine);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}
.contact-row:hover {
  transform: translateX(6px);
  box-shadow: 0 18px 40px -18px rgba(139,90,15,0.3);
  border-color: rgba(231,168,26,0.3);
}
.contact-row:hover::before {
  transform: scaleY(1);
}
.contact-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 0.9rem;
  background: rgba(231,168,26,0.1);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}

.quote-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(231,168,26,0.25);
  border-radius: 1.75rem;
  padding: 2.5rem;
  box-shadow: 0 1px 0 0 rgba(255,255,255,0.5) inset, 0 30px 70px -24px rgba(139,90,15,0.3);
}

/* ============ FOOTER ============ */
footer {
  position: relative;
}
footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(231,168,26,0.5), transparent);
}
.footer-link {
  transition: color 0.25s ease, padding-left 0.25s ease;
}
.footer-link:hover {
  color: var(--primary-light);
  padding-left: 4px;
}

/* ============ SCROLL TO TOP ============ */
#scrollTop.visible {
  opacity: 1;
  pointer-events: auto;
}
#scrollTop:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

/* ============ SIGNATURE: SUN ARC SCROLL INDICATOR ============ */
.sun-arc {
  position: fixed;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 45;
  display: none;
  pointer-events: none;
}
@media (min-width: 1280px) {
  .sun-arc { display: block; }
}
.sun-dot {
  filter: drop-shadow(0 0 6px rgba(231,168,26,0.9));
  transition: cx 0.1s linear, cy 0.1s linear;
}

/* Utility color classes referencing tokens (for elements outside tailwind config scope) */
.text-ink-soft { color: #6B7280; }
.bg-ink-light { background-color: #374151; }
