/* Al Quran Video — Nightfall Gold (mobile-first) */
:root {
  --bg-base: #070f1f;
  --bg-mid: #0d1f38;
  --bg-deep: #040a14;
  --glass: rgba(255, 255, 255, 0.06);
  --glass-strong: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.12);
  --accent: #e3b44e;
  --accent-soft: #f3d692;
  --accent-dim: rgba(227, 180, 78, 0.14);
  --text: #f6f4ec;
  --text-muted: #8ba0bd;
  --serif: "Amiri", "Times New Roman", serif;
  --sans: "Outfit", system-ui, sans-serif;
  --header-h: 3.75rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1080px;
  --page-pad: 1.15rem;
  --section-y: 4.25rem;
  --scroll-track: #0a1424;
  --scroll-thumb: #3a4f6e;
  --scroll-thumb-hover: #e3b44e;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scrollbar-width: thin;
  scrollbar-color: var(--scroll-thumb) var(--scroll-track);
}

/* Custom scrollbar — Firefox above; WebKit below */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
  background: var(--scroll-track);
  border-left: 1px solid rgba(255, 255, 255, 0.04);
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #4a6285 0%, var(--scroll-thumb) 100%);
  border-radius: 999px;
  border: 2px solid var(--scroll-track);
  background-clip: padding-box;
}

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--accent-soft), var(--scroll-thumb-hover));
  border: 2px solid var(--scroll-track);
  background-clip: padding-box;
}

html::-webkit-scrollbar-corner,
body::-webkit-scrollbar-corner {
  background: var(--scroll-track);
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg-base);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(100% - (var(--page-pad) * 2), var(--max));
  margin-inline: auto;
}

/* Ambient */
.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.28;
}

.ambient__orb--a {
  width: min(70vw, 280px);
  height: min(70vw, 280px);
  top: -8%;
  right: -18%;
  background: radial-gradient(circle, #1a3a5c 0%, transparent 70%);
  animation: drift 18s var(--ease) infinite alternate;
}

.ambient__orb--b {
  width: min(65vw, 240px);
  height: min(65vw, 240px);
  bottom: 6%;
  left: -20%;
  background: radial-gradient(circle, rgba(227, 180, 78, 0.2) 0%, transparent 70%);
  animation: drift 22s var(--ease) infinite alternate-reverse;
}

.ambient__grain {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(4%, 6%) scale(1.08); }
}

/* Header — mobile first */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--page-pad);
  padding-top: env(safe-area-inset-top, 0);
  transition: background 0.35s var(--ease), backdrop-filter 0.35s var(--ease), border-color 0.35s;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(7, 15, 31, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--glass-border);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  z-index: 2;
  min-width: 0;
}

.brand__mark {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand__name {
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--text-muted);
}

.nav a:not(.nav__cta) {
  position: relative;
}

.nav a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav a:not(.nav__cta):hover {
  color: var(--text);
}

.nav a:not(.nav__cta):hover::after {
  transform: scaleX(1);
}

.nav__cta {
  color: var(--bg-base) !important;
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: filter 0.25s, transform 0.25s var(--ease);
}

.nav__cta:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  gap: 6px;
  z-index: 2;
  margin-right: -0.35rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.3s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 35;
  background: rgba(7, 15, 31, 0.98);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding: var(--page-pad);
  padding-top: calc(var(--header-h) + env(safe-area-inset-top, 0px));
  font-family: var(--serif);
  font-size: clamp(1.45rem, 6vw, 1.85rem);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  padding: 0.35rem 0.75rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  animation: heroKen 28s var(--ease) infinite alternate;
}

@keyframes heroKen {
  from { transform: scale(1.04) translate(0, 0); }
  to { transform: scale(1.1) translate(-1.5%, 1%); }
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 15, 31, 0.62) 0%, rgba(7, 15, 31, 0.78) 48%, rgba(7, 15, 31, 0.97) 100%),
    radial-gradient(ellipse 90% 55% at 50% 18%, rgba(13, 31, 56, 0.35), transparent 70%);
}

.hero__content {
  width: min(100% - (var(--page-pad) * 2), 42rem);
  text-align: center;
  padding: calc(var(--header-h) + 1.75rem + env(safe-area-inset-top, 0px)) 0 3rem;
}

.hero__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.hero__logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.35));
  animation: logoFloat 5.5s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero__title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.15rem, 9vw, 4.4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.35);
}

.hero__tagline {
  margin: 1rem 0 0;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.hero__tagline::before,
.hero__tagline::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  margin: 0 0.55rem;
  vertical-align: middle;
  background: linear-gradient(90deg, transparent, var(--accent));
}

.hero__tagline::after {
  background: linear-gradient(90deg, var(--accent), transparent);
}

.hero__lead {
  margin: 1.1rem auto 0;
  max-width: 34rem;
  font-size: clamp(0.95rem, 3.6vw, 1.12rem);
  font-weight: 300;
  color: var(--text-muted);
}

.hero__actions {
  margin-top: 1.65rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  min-height: 48px;
  transition: transform 0.25s var(--ease), filter 0.25s, background 0.25s, border-color 0.25s, box-shadow 0.25s;
  -webkit-tap-highlight-color: transparent;
}

.btn--gold {
  color: var(--bg-base);
  background: linear-gradient(135deg, var(--accent-soft), var(--accent) 55%, #c9982f);
  box-shadow: 0 10px 30px rgba(227, 180, 78, 0.22);
}

.btn--ghost {
  color: var(--text);
  border: 1px solid var(--glass-border);
  background: var(--glass);
  backdrop-filter: blur(8px);
}

.btn--lg {
  padding: 1rem 1.6rem;
  font-size: 1rem;
}

/* Sections */
.section {
  position: relative;
  z-index: 1;
  padding: var(--section-y) 0;
}

.section__head {
  text-align: center;
  max-width: 34rem;
  margin: 0 auto 2.25rem;
}

.section__eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.section__title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 6.5vw, 2.7rem);
  font-weight: 700;
  line-height: 1.18;
}

.section__desc {
  margin: 0.75rem 0 0;
  color: var(--text-muted);
  font-weight: 300;
  font-size: 0.98rem;
}

/* Feature grid */
.feature-grid {
  display: grid;
  gap: 0.85rem;
}

.feature {
  position: relative;
  padding: 1.35rem 1.2rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 16px;
  background:
    linear-gradient(var(--bg-base), var(--bg-base)) padding-box,
    linear-gradient(145deg, rgba(227, 180, 78, 0.35), rgba(255, 255, 255, 0.08) 40%, rgba(255, 255, 255, 0.04)) border-box;
  overflow: hidden;
  transition: transform 0.35s var(--ease), background 0.35s, box-shadow 0.35s;
}

.feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, var(--accent-dim), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s;
}

.feature__index,
.feature h3,
.feature p {
  position: relative;
}

.feature__index {
  display: block;
  margin-bottom: 0.75rem;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--accent);
  letter-spacing: 0.04em;
}

.feature h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--text);
}

.feature p {
  margin: 0.45rem 0 0;
  color: var(--text-muted);
  font-weight: 300;
  font-size: 0.92rem;
}

/* Tools */
.tools {
  background:
    linear-gradient(180deg, transparent, rgba(13, 31, 56, 0.45), transparent);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

.tool {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 5.5rem;
  padding: 0.95rem;
  border-radius: 14px;
  border: 1px solid var(--glass-border);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s var(--ease), background 0.3s, box-shadow 0.3s;
}

.tool::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-dim), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s;
}

.tool em {
  position: relative;
  font-style: normal;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: auto;
}

.tool span {
  position: relative;
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  line-height: 1.25;
}

/* Experience */
.themes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
  margin-bottom: 2rem;
}

.theme {
  padding: 0.7rem;
  border-radius: 14px;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.3s, transform 0.3s var(--ease), background 0.3s;
}

.theme--active {
  border-color: rgba(227, 180, 78, 0.55);
  background: var(--accent-dim);
}

.theme__swatch {
  height: 64px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--a) 0%, var(--b) 58%, var(--c) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.theme__meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin-top: 0.7rem;
  padding: 0 0.1rem;
}

.theme__meta strong {
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.3;
}

.theme__meta span {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.pillars {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--glass-border);
}

.pillars li {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--glass-border);
}

.pillars strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.pillars span {
  color: var(--text-muted);
  font-weight: 300;
  font-size: 0.92rem;
}

/* Download */
.download {
  padding: 0;
  position: relative;
  isolation: isolate;
  min-height: 58svh;
  display: grid;
  place-items: center;
  text-align: center;
}

.download__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.download__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85);
}

.download__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, var(--bg-base) 0%, rgba(7, 15, 31, 0.78) 40%, rgba(7, 15, 31, 0.92) 100%);
}

.download__inner {
  padding: 4.5rem 0;
  width: min(100% - (var(--page-pad) * 2), var(--max));
}

.download__logo {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.1rem;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.4));
}

.download__title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 6.5vw, 3rem);
  line-height: 1.18;
}

.download__desc {
  margin: 0.9rem auto 1.5rem;
  max-width: 28rem;
  color: var(--text-muted);
  font-weight: 300;
  font-size: 0.98rem;
}

.download__inner .btn {
  width: 100%;
  max-width: 22rem;
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  padding: 2.75rem 0 calc(2rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--glass-border);
  background: var(--bg-deep);
}

.footer__grid {
  display: grid;
  gap: 1.25rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer__brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.footer__brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.08rem;
}

.footer__brand p {
  margin: 0.15rem 0 0;
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.15rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer__links a {
  padding: 0.2rem 0;
}

.footer__links a:hover {
  color: var(--accent-soft);
}

.footer__note {
  margin: 0;
  max-width: 36rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 300;
}

.footer__copy {
  margin: 0.35rem 0 0;
  color: rgba(139, 160, 189, 0.7);
  font-size: 0.8rem;
}

/* ——— Breakpoints (mobile-first) ——— */

@media (min-width: 480px) {
  :root {
    --page-pad: 1.35rem;
  }

  .hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  .hero__actions .btn {
    width: auto;
  }

  .download__inner .btn {
    width: auto;
  }

  .hero__tagline {
    letter-spacing: 0.22em;
    font-size: 0.72rem;
  }

  .hero__tagline::before,
  .hero__tagline::after {
    width: 24px;
    margin: 0 0.7rem;
  }
}

@media (min-width: 640px) {
  :root {
    --header-h: 4.1rem;
    --section-y: 5.5rem;
  }

  .brand__mark {
    width: 36px;
    height: 36px;
  }

  .brand__name {
    font-size: 1.15rem;
  }

  .hero__logo {
    width: 88px;
    height: 88px;
  }

  .hero__content {
    padding-top: calc(var(--header-h) + 2.5rem + env(safe-area-inset-top, 0px));
  }

  .tools-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

  .tool {
    min-height: 6rem;
    padding: 1.1rem;
  }

  .tool span {
    font-size: 0.95rem;
  }

  .theme__swatch {
    height: 76px;
  }

  .theme__meta strong {
    font-size: 0.9rem;
  }

  .download {
    min-height: 64svh;
  }

  .download__inner {
    padding: 5.5rem 0;
  }

  .ambient__orb--a,
  .ambient__orb--b {
    width: 36vw;
    height: 36vw;
    filter: blur(90px);
    opacity: 0.32;
  }
}

@media (min-width: 720px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .feature--wide {
    grid-column: 1 / -1;
  }

  .feature {
    padding: 1.55rem 1.4rem 1.65rem;
    border-radius: 18px;
  }

  .feature h3 {
    font-size: 1.35rem;
  }

  .feature p {
    font-size: 0.96rem;
  }

  .footer__grid {
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .footer__links {
    justify-content: end;
  }

  .footer__note,
  .footer__copy {
    grid-column: 1 / -1;
  }
}

@media (min-width: 800px) {
  .themes {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2.75rem;
  }

  .theme {
    padding: 0.85rem;
    border-radius: 16px;
  }

  .theme__swatch {
    height: 84px;
    border-radius: 12px;
  }

  .pillars {
    grid-template-columns: repeat(3, 1fr);
  }

  .pillars li {
    padding: 1.75rem 1.5rem 0 0;
    border-bottom: 0;
    border-right: 1px solid var(--glass-border);
  }

  .pillars li:last-child {
    border-right: 0;
    padding-right: 0;
  }

  .pillars li:not(:first-child) {
    padding-left: 1.5rem;
  }

  .pillars strong {
    font-size: 1.2rem;
  }
}

@media (min-width: 860px) {
  :root {
    --page-pad: 1.5rem;
    --header-h: 4.25rem;
    --section-y: 6.75rem;
  }

  .nav {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }

  .site-header {
    padding: 0 1.5rem;
  }

  .section__head {
    margin-bottom: 3.25rem;
  }

  .section__desc {
    font-size: 1.05rem;
  }
}

@media (min-width: 960px) {
  .tools-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.9rem;
  }

  .download {
    min-height: 68svh;
  }

  .download__inner {
    padding: 6.5rem 0;
  }

  .download__logo {
    width: 72px;
    height: 72px;
  }
}

@media (min-width: 980px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
  }

  .feature--wide {
    grid-column: span 3;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 1.5rem;
    align-items: start;
  }

  .feature--wide .feature__index {
    grid-row: 1 / -1;
    font-size: 2.4rem;
    align-self: center;
  }

  .feature--wide h3 {
    font-size: 1.55rem;
  }

  .feature--wide p {
    max-width: 40rem;
  }
}

/* Hover effects only where pointer allows */
@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    transform: translateY(-2px);
  }

  .btn--gold:hover {
    box-shadow: 0 14px 36px rgba(227, 180, 78, 0.32);
  }

  .btn--ghost:hover {
    border-color: rgba(243, 214, 146, 0.4);
    background: var(--glass-strong);
  }

  .feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  }

  .feature:hover::before {
    opacity: 1;
  }

  .tool:hover {
    border-color: rgba(227, 180, 78, 0.42);
    background: linear-gradient(165deg, rgba(227, 180, 78, 0.12), rgba(255, 255, 255, 0.03));
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  }

  .tool:hover::after {
    opacity: 1;
  }

  .theme:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.22);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__img,
  .hero__logo,
  .ambient__orb {
    animation: none !important;
  }
}
