/* ============================================================
   Lunar Bar — stylesheet
   Font files: Familjen Grotesk (headings) / Schibsted Grotesk (body)
   ============================================================ */

/* ---------- Fonts ---------- */
@font-face {
  font-family: 'Familjen Grotesk';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../assets/fonts/familjen-grotesk-vietnamese.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: 'Familjen Grotesk';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../assets/fonts/familjen-grotesk-latin-ext.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Familjen Grotesk';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../assets/fonts/familjen-grotesk-latin.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Schibsted Grotesk';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url("../assets/fonts/schibsted-grotesk-latin-ext.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Schibsted Grotesk';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url("../assets/fonts/schibsted-grotesk-latin.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- Theme tokens ---------- */
:root {
  --page: #05070f; --page-rgb: 5,7,15;
  --panel: #0d1526; --panel-2: #111c33;
  --ink: #eef2f9; --body-strong: #cbd6e8; --body: #a8b5cc; --body-soft: #8d9ab3; --muted: #75839e;
  --line: #1e2b45; --line-strong: #2a3a58;
  --grad-1: #0a1930; --grad-2: #101a35; --grad-3: #1a1636; --grad-4: #241a2c;
  --accent-text: #5fd0f2;
  --glass-rgb: 20,32,56;
  --ink-rgb: 196,212,238; --shadow-rgb: 0,0,0;
  --band: #020712; --band-text: #9fb0cc; --band-2: #010509; --band-2-text: #6b7c98;
  --logo-on-dark: block; --logo-on-light: none;
  --header-bg: rgba(8,12,24,.82); --header-line: rgba(120,150,200,.14); --pill-bg: rgba(95,208,242,.16);
  color-scheme: dark;
}
[data-theme="light"] {
  --page: #f7fbff; --page-rgb: 247,251,255;
  --panel: #ffffff; --panel-2: #f6fafe;
  --ink: #0d1b3e; --body-strong: #31405f; --body: #4d5d7d; --body-soft: #61708f; --muted: #8493ae;
  --line: #e2ecf7; --line-strong: #d3dfef;
  --grad-1: #dff3fd; --grad-2: #e9edfc; --grad-3: #f4eafb; --grad-4: #fdf1e5;
  --accent-text: #0aa7d6;
  --glass-rgb: 255,255,255;
  --ink-rgb: 13,27,62; --shadow-rgb: 16,26,51;
  --band: #0d1b3e; --band-text: #c6d3e8; --band-2: #08122c; --band-2-text: #7b8db0;
  --logo-on-dark: none; --logo-on-light: block;
  --header-bg: rgba(255,255,255,.86); --header-line: rgba(13,27,62,.07); --pill-bg: rgba(34,193,232,.14);
  color-scheme: light;
}
html, body { transition: background-color .35s ease, color .35s ease; }

/* ---------- Reset & base ---------- */
* { box-sizing: border-box; }
html, body {
  margin: 0 !important; padding: 0 !important;
  background: var(--page) !important; color: var(--ink) !important;
  font-family: 'Schibsted Grotesk', system-ui, sans-serif !important;
  -webkit-font-smoothing: antialiased !important;
  max-width: 100vw !important;
  overflow-x: hidden !important;
}
a { color: var(--accent-text); text-decoration: none; }
a:hover { color: var(--ink); }
::selection { background: rgba(10,167,214,.18); }
:focus-visible { outline: 2px solid var(--accent-text); outline-offset: 3px; }
button { font-family: inherit; }
img { max-width: 100%; height: auto; }

h1, h2, h3 { font-family: 'Familjen Grotesk', sans-serif; margin: 0; color: var(--ink); }

.eyebrow {
  font: 500 11px/1 'Schibsted Grotesk', sans-serif;
  letter-spacing: .28em;
  color: var(--accent-text);
  margin-bottom: 20px;
}
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; box-sizing: border-box; }

/* ---------- Animations ---------- */
@keyframes lbfloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
@keyframes lbdrift { 0% { transform: translate(0,0) scale(1); opacity: .5; } 50% { transform: translate(3%,-3%) scale(1.07); opacity: .8; } 100% { transform: translate(0,0) scale(1); opacity: .5; } }
@keyframes lbfade { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes lbrise { from { opacity: 0; transform: translateY(34px); } to { opacity: 1; transform: none; } }
@keyframes lbghost { from { opacity: 0; transform: scale(.94); } }
@keyframes lbpuff { 0% { transform: translate(0,0) scale(.85); opacity: 0; } 20% { opacity: .55; } 100% { transform: translate(30px,-42px) scale(1.8); opacity: 0; } }

.float { animation: lbfloat 6s ease-in-out infinite; }
.rise { animation: lbrise .9s ease both; }
.fade { animation: lbfade .6s ease both; }

/* ---------- Background decoration ---------- */
.bg-decor { position: fixed; inset: 0; pointer-events: none; z-index: 0; }
.bg-decor__panel { background: linear-gradient(180deg, var(--panel) 0%, var(--panel-2) 38%, var(--grad-1) 100%); }
.bg-orb { position: fixed; border-radius: 50%; pointer-events: none; z-index: 0; }
.bg-orb--1 { top: -14%; left: -8%; width: 52vw; height: 52vw; background: radial-gradient(circle, rgba(34,193,232,.16), transparent 66%); }
.bg-orb--2 { top: 32%; right: -14%; width: 46vw; height: 46vw; background: radial-gradient(circle, rgba(160,106,208,.12), transparent 66%); }
.bg-orb--3 { bottom: -18%; left: 24%; width: 44vw; height: 44vw; background: radial-gradient(circle, rgba(245,166,35,.09), transparent 66%); }

.page-shell { min-height: 100vh; position: relative; overflow-x: hidden; width: 100%; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font: 500 13px/1 'Schibsted Grotesk', sans-serif; letter-spacing: .1em;
  border-radius: 999px; cursor: pointer; border: none;
  transition: box-shadow .3s, transform .3s, border-color .3s, color .3s;
}
.btn-primary {
  padding: 18px 36px;
  background: linear-gradient(120deg, #22c1e8, #0a86d6);
  color: #fff;
  box-shadow: 0 14px 32px rgba(10,134,214,.3);
}
.btn-primary:hover { box-shadow: 0 20px 44px rgba(10,134,214,.42); transform: translateY(-2px); }
.btn-primary.small { padding: 16px 30px; box-shadow: 0 10px 26px rgba(10,134,214,.3); }
.btn-primary.small:hover { box-shadow: 0 16px 34px rgba(10,134,214,.42); }

.btn-outline {
  padding: 18px 34px;
  border: 1px solid rgba(var(--ink-rgb),.14);
  background: rgba(var(--glass-rgb),.7);
  color: var(--ink);
}
.btn-outline:hover { border-color: #22c1e8; box-shadow: 0 12px 28px rgba(34,193,232,.2); }
.btn-outline.small { padding: 16px 30px; background: rgba(var(--glass-rgb),.72); }

.btn-ghost {
  padding: 16px 30px;
  border: 1px solid var(--line-strong);
  background: var(--panel);
  color: var(--body-soft);
}
.btn-ghost:hover { border-color: var(--accent-text); color: var(--ink); }

.btn-disabled {
  padding: 16px 28px;
  border: 1px solid var(--line);
  background: var(--panel-2);
  color: var(--muted);
  cursor: not-allowed;
}

.link-pill {
  display: inline-flex; align-items: center; gap: 9px;
  font: 500 12px/1 'Schibsted Grotesk', sans-serif; letter-spacing: .12em;
  padding: 15px 26px; border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--panel);
  color: var(--ink);
  transition: border-color .25s, box-shadow .25s;
}
.link-pill:hover { border-color: #22c1e8; box-shadow: 0 10px 24px rgba(34,193,232,.18); color: var(--ink); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  background: transparent; backdrop-filter: none; box-shadow: none;
  border-bottom: 1px solid transparent;
  transition: background .4s, backdrop-filter .4s, box-shadow .4s, border-color .4s;
}
.site-header.is-scrolled {
  background: var(--header-bg);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0,0,0,.28);
  border-bottom-color: var(--header-line);
}
.header-inner {
  max-width: 1280px; margin: 0 auto;
  padding-left: 32px; padding-right: 32px; box-sizing: border-box;
  height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; width: 100%;
}
.brand { display: flex; align-items: center; gap: 12px; cursor: pointer; border: none; background: none; padding: 0; }
.brand .logo-dark,
.gate-card .logo-dark {
	display: var(--logo-on-dark);
	height: 26px !important;
}
.brand .logo-light,
.gate-card .logo-light { display: var(--logo-on-light); height: 26px; }

/* Header & Footer Dark Mode Logo Pure White Filter */
.site-header .logo-dark,
.site-footer .logo-dark,
.gate-card .logo-dark,
.footer-col img:not(.footer-logo-light) {
  filter: brightness(0) invert(1) !important;
  -webkit-filter: brightness(0) invert(1) !important;
}
[data-theme="light"] .site-header .logo-light,
[data-theme="light"] .site-footer .footer-logo-light,
[data-theme="light"] .gate-card .logo-light {
  filter: none !important;
  -webkit-filter: none !important;
}


.nav-desktop { display: flex; align-items: center; gap: 8px; }
.nav-link {
  font: 500 13px/1 'Schibsted Grotesk', sans-serif; letter-spacing: .06em;
  color: var(--body); background: transparent;
  padding: 11px 17px; border-radius: 999px;
  transition: color .25s, background .25s;
  border: none; cursor: pointer;
}
.nav-link:hover { color: var(--ink); background: rgba(34,193,232,.1); }
.nav-link.is-active { color: var(--ink); background: var(--pill-bg); }

.theme-toggle {
  width: 40px; height: 40px; margin-left: 6px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 999px; border: 1px solid var(--line-strong);
  background: var(--panel); color: var(--body); cursor: pointer; padding: 0;
  transition: color .25s, border-color .25s, transform .25s;
}
.theme-toggle:hover { color: var(--accent-text); border-color: #22c1e8; transform: translateY(-2px); }

.verify-cta {
  display: flex; align-items: center; gap: 8px; margin-left: 10px;
  font: 500 13px/1 'Schibsted Grotesk', sans-serif; letter-spacing: .06em;
  color: #fff; background: linear-gradient(120deg,#22c1e8,#0a86d6);
  padding: 12px 20px; border-radius: 999px;
  box-shadow: 0 10px 24px rgba(10,134,214,.28);
  transition: box-shadow .25s, transform .25s;
  border: none; cursor: pointer;
}
.verify-cta:hover { color: #fff; box-shadow: 0 16px 32px rgba(10,134,214,.4); transform: translateY(-2px); }

.menu-btn {
  width: 48px; height: 48px; display: none; flex-direction: column;
  align-items: center; justify-content: center; gap: 6px;
  background: var(--panel); border: 1px solid var(--line-strong); border-radius: 14px;
  color: var(--ink); cursor: pointer; padding: 0;
}
.menu-btn .bar { width: 19px; height: 2px; border-radius: 2px; background: currentColor; transition: transform .3s, opacity .3s; }
.menu-btn.is-open .bar--top { transform: translateY(8px) rotate(45deg); }
.menu-btn.is-open .bar--mid { opacity: 0; }
.menu-btn.is-open .bar--bot { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed; inset: 76px 0 0; z-index: 55;
  background: rgba(var(--page-rgb),.98); backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: none; flex-direction: column; justify-content: flex-start;
  padding: 24px 28px 36px; overflow-y: auto;
  animation: lbfade .3s ease both;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu .nav-link-lg {
  font-family: 'Schibsted Grotesk', sans-serif; font-weight: 600; font-size: 17px;
  letter-spacing: .04em; color: var(--body); padding: 13px 0;
  border-bottom: 1px solid var(--line); background: none; border-left: none; border-right: none; border-top: none;
  text-align: left; cursor: pointer; display: block; text-decoration: none;
  transition: color .25s ease, padding-left .25s ease;
}
.mobile-menu .nav-link-lg:hover { color: var(--accent-text); padding-left: 4px; }
.mobile-menu .nav-link-lg.is-active { color: var(--ink); font-weight: 700; }
.mobile-menu .theme-toggle-lg {
  margin-top: 24px; align-self: flex-start; display: flex; align-items: center; gap: 10px;
  font: 500 13px/1 'Schibsted Grotesk', sans-serif; letter-spacing: .1em;
  padding: 14px 22px; border-radius: 999px; border: 1px solid var(--line-strong);
  background: var(--panel); color: var(--body); cursor: pointer;
  transition: color .25s, border-color .25s;
}
.mobile-menu .theme-toggle-lg:hover { color: var(--accent-text); border-color: #22c1e8; }

/* ---------- WordPress Menu Compatibility ---------- */
.nav-desktop ul,
.nav-desktop .menu {
  display: flex; align-items: center; gap: 8px;
  list-style: none; margin: 0; padding: 0;
}
.nav-desktop ul li,
.nav-desktop .menu li {
  list-style: none; margin: 0; padding: 0;
}
.nav-desktop ul li a,
.nav-desktop .menu li a {
  font: 500 15px/1 'Schibsted Grotesk', sans-serif; letter-spacing: .06em;
  color: var(--body); background: transparent;
  padding: 11px 17px; border-radius: 999px;
  transition: color .25s, background .25s;
  border: none; cursor: pointer; display: inline-block; text-decoration: none;
}
.nav-desktop ul li a:hover,
.nav-desktop .menu li a:hover { color: var(--ink); background: rgba(34,193,232,.1); }
.nav-desktop ul li.current-menu-item > a,
.nav-desktop ul li.current_page_item > a,
.nav-desktop ul li.is-active > a,
.nav-desktop .menu li.current-menu-item > a,
.nav-desktop .menu li.is-active > a { color: var(--ink); background: var(--pill-bg); }

.mobile-menu ul,
.mobile-menu .menu {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; width: 100%;
}
.mobile-menu ul li,
.mobile-menu .menu li { list-style: none; margin: 0; padding: 0; width: 100%; }
.mobile-menu ul li a,
.mobile-menu .menu li a {
  font-family: 'Schibsted Grotesk', sans-serif; font-weight: 600; font-size: 17px;
  letter-spacing: .04em; color: var(--body); padding: 13px 0;
  border-bottom: 1px solid var(--line); background: none;
  text-align: left; cursor: pointer; display: block; text-decoration: none;
  transition: color .25s ease, padding-left .25s ease;
}
.mobile-menu ul li a:hover,
.mobile-menu .menu li a:hover { color: var(--accent-text); padding-left: 4px; }
.mobile-menu ul li.current-menu-item > a,
.mobile-menu ul li.current_page_item > a,
.mobile-menu ul li.is-active > a,
.mobile-menu .menu li.current-menu-item > a,
.mobile-menu .menu li.is-active > a { color: var(--ink); }

@media (max-width: 979px) {
  .nav-desktop { display: none; }
  .menu-btn { display: flex; }
}

/* ---------- Overlays: age gate / exited / loading ---------- */
.overlay { position: fixed; inset: 0; display: flex; align-items: center; justify-content: center; padding: 24px; }
.overlay[hidden] { display: none; }
.overlay-gate {
  z-index: 100; background: rgba(var(--page-rgb),.86); backdrop-filter: blur(16px);
}
.gate-card {
  width: 100%; max-width: 520px; text-align: center; padding: 56px 40px;
  border-radius: 26px; background: var(--panel);
  box-shadow: 0 30px 80px rgba(var(--shadow-rgb),.16), 0 2px 8px rgba(var(--shadow-rgb),.06);
}
.gate-card img.gate-logo { width: 150px; height: auto; margin: 0 auto 30px; }
.gate-card img.gate-logo.logo-dark { display: var(--logo-on-dark, block) !important; }
.gate-card img.gate-logo.logo-light { display: var(--logo-on-light, none) !important; }
.gate-card h2 { font-weight: 600; font-size: 29px; line-height: 1.2; letter-spacing: -.02em; margin: 0 0 14px; }
.gate-card p { margin: 0 0 34px; font-size: 14px; line-height: 1.7; color: var(--body-soft); }
.gate-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.gate-terms { margin: 26px 0 0; font-size: 12px; line-height: 1.6; color: var(--muted); }

.overlay-exit { z-index: 110; background: var(--grad-2); text-align: center; }
.overlay-exit .title { font-family: 'Familjen Grotesk', sans-serif; font-weight: 600; font-size: 26px; letter-spacing: -.02em; }
.overlay-exit p { margin: 12px 0 22px; font-size: 14px; color: var(--body-soft); }

.overlay-loading {
  z-index: 99999;
  background: rgba(5, 8, 18, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.moon-banner-card {
  position: relative;
  width: 100%;
  max-width: 580px;
  padding: 52px 40px 48px;
  border-radius: 32px;
  background: linear-gradient(135deg, #070d1e 0%, #0d1730 60%, #151838 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 24px;
}

.moon-emblem-hero {
  position: relative;
  z-index: 2;
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.moon-emblem-hero .golden-moon-svg {
  width: 90px;
  height: 90px;
  filter: drop-shadow(0 10px 28px rgba(255, 180, 50, 0.5));
}

.moon-emblem-hero .moon-halo {
  position: absolute;
  inset: -24px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 200, 80, 0.5) 0%, rgba(255, 170, 40, 0.18) 50%, transparent 75%);
  filter: blur(14px);
  pointer-events: none;
}

.moon-banner-title {
  position: relative;
  z-index: 2;
  font-family: 'Familjen Grotesk', sans-serif;
  font-weight: 600;
  font-size: clamp(24px, 4.5vw, 36px);
  line-height: 1.2;
  color: #ffffff !important;
  letter-spacing: -0.02em;
  margin: 0 !important;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.moon-star {
  position: absolute;
  color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
  z-index: 1;
  user-select: none;
}

.moon-star.star-1 { top: 32px; left: 32px; font-size: 18px; animation: lbdrift 4s ease-in-out infinite; }
.moon-star.star-2 { top: 28px; right: 36px; font-size: 15px; animation: lbdrift 3s ease-in-out 1s infinite; }
.moon-star.star-3 { bottom: 28px; left: 60px; font-size: 13px; opacity: 0.3; }

.moon-orbit-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.moon-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.moon-orb.orb-blue {
  top: 38%;
  left: 54px;
  width: 16px;
  height: 16px;
  background: radial-gradient(circle, #257ba6, #0e4463);
  box-shadow: 0 0 12px rgba(37, 123, 166, 0.5);
}

.moon-orb.orb-gold {
  top: 42%;
  right: 58px;
  width: 14px;
  height: 14px;
  background: radial-gradient(circle, #d49137, #855214);
  box-shadow: 0 0 10px rgba(212, 145, 55, 0.5);
}

/* ---------- Fully Responsive Unified Container System ---------- */
.container,
.container-fluid,
.hero-section > .container,
.moon-section > .container,
.about-preview > .container,
.content-page > .container,
.legal-page > .container,
.verify-page > .container,
.products-page > .container,
.contact-page > .container,
.faq-page > .container {
  width: 100% !important;
  max-width: 1280px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 32px !important;
  padding-right: 32px !important;
  box-sizing: border-box !important;
}

@media (max-width: 1200px) {
  .container,
  .container-fluid,
  .hero-section > .container,
  .moon-section > .container,
  .about-preview > .container,
  .content-page > .container,
  .header-inner {
    padding-left: 28px !important;
    padding-right: 28px !important;
  }
}

@media (max-width: 991px) {
  .container,
  .container-fluid,
  .hero-section > .container,
  .moon-section > .container,
  .about-preview > .container,
  .content-page > .container,
  .header-inner {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}

@media (max-width: 576px) {
  .container,
  .container-fluid,
  .hero-section > .container,
  .moon-section > .container,
  .about-preview > .container,
  .content-page > .container,
  .header-inner {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
}

/* ---------- Main content ---------- */
/* ---------- Main content & Header Gap for ALL Pages ---------- */
main,
.site-main,
#primary,
.page-shell > main {
  position: relative;
  z-index: 1;
}

.content-page,
.products-page,
.hero-section,
.story-card,
.verify-page,
.legal-page {
  margin-top: 120px !important;
}

@media (max-width: 767px) {
  .content-page,
  .products-page,
  .hero-section,
  .story-card,
  .verify-page,
  .legal-page {
    margin-top: 90px !important;
  }
}

/* ---------- 100px Section-to-Section Gap Standard ---------- */
.contact-header + .contact-form,
.contact-form + .office-card {
  margin-top: 40px !important;
}

/* ---------- Contact Page Specific Gap Reduction ---------- */
.elementor-widget-lunarbar_contact_header + .elementor-widget-lunarbar_contact_form,
.elementor-widget-lunarbar_contact_header + .elementor-widget,
.elementor-widget-lunarbar_contact_header + .elementor-section,
.lunarbar_contact_header + .lunarbar_contact_form {
  margin-top: 0 !important;
}

.content-page.contact-page,
.content-page.contact-page.wide,
.content-page.contact-page.wide.rise {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.content-page.contact-page > .container > p.intro,
.contact-page > p.intro,
.contact-page .intro {
  margin-bottom: 24px !important;
}

/* ---------- Hero (home) ---------- */
.hero-section {
  position: relative; overflow: hidden; border-radius: 36px;
  padding: clamp(44px, 5.5vw, 76px) clamp(24px, 4.5vw, 64px);
  min-height: min(76vh,680px); display: flex; align-items: center;
  width: 100%;
  background: linear-gradient(128deg, var(--grad-1) 0%, var(--grad-2) 38%, var(--grad-3) 66%, var(--grad-4) 100%);
}
.hero-orb-a { position: absolute; top: -22%; left: -10%; width: 44%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(34,193,232,.42), transparent 66%); animation: lbdrift 13s ease-in-out infinite; }
.hero-orb-b { position: absolute; bottom: -30%; right: -8%; width: 48%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(160,106,208,.28), transparent 66%); animation: lbdrift 16s ease-in-out 2s infinite; }
.hero-orb-c { position: absolute; top: 34%; right: 26%; width: 26%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(245,166,35,.22), transparent 68%); }
.hero-star { position: absolute; border-radius: 50%; background: #fff; }
.hero-star--1 { top: 16%; left: 22%; width: 5px; height: 5px; opacity: .9; }
.hero-star--2 { top: 70%; left: 12%; width: 4px; height: 4px; opacity: .8; }
.hero-star--3 { top: 26%; right: 12%; width: 5px; height: 5px; opacity: .75; }
.hero-star--4 { bottom: 18%; right: 34%; width: 4px; height: 4px; opacity: .7; }

.hero-grid {
  position: relative; width: 100%; max-width: 1280px; margin: 0 auto;
  
}
.hero-copy { text-align: left; }
.hero-copy img.hero-logo { display: var(--logo-on-dark); width: min(230px,54vw); height: auto; margin: 0 0 26px; }
.hero-copy img.hero-logo-light { display: var(--logo-on-light); width: min(230px,54vw); height: auto; margin: 0 0 26px; }
.hero-copy h1 { font-weight: 600; font-size: clamp(38px,5.4vw,68px); line-height: 1.04; letter-spacing: -.035em; margin: 0 0 26px; max-width: 13ch; }
.hero-copy p { margin: 0 0 34px; max-width: 44ch; font-size: 17px; line-height: 1.75; color: var(--body-strong); }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-start; }

.hero-logo.rise {
	filter: brightness(0) invert(1) !important;
	-webkit-filter: brightness(0) invert(1) !important;
}

.hero-art { position: relative; width: min(440px,86vw); margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.hero-art-mark { position: relative; width: 100%; }
.hero-art-mark .glow { position: absolute; inset: -24% -14%; border-radius: 50%; background: radial-gradient(ellipse at 50% 50%, rgba(255,255,255,.88), rgba(var(--glass-rgb),.28) 46%, transparent 72%); }
.hero-art-mark img { position: relative; width: 100%; height: auto; display: block; filter: drop-shadow(0 22px 40px rgba(var(--ink-rgb),.16)); }
.hero-art-mark .puff { position: absolute; border-radius: 50%; }
.hero-art-mark .puff--1 { right: 2%; top: 20%; width: 30px; height: 30px; background: rgba(34,193,232,.45); filter: blur(9px); animation: lbpuff 5s ease-out infinite; }
.hero-art-mark .puff--2 { right: 12%; top: 36%; width: 20px; height: 20px; background: rgba(160,106,208,.4); filter: blur(7px); animation: lbpuff 5s ease-out 1.8s infinite; }
.hero-devices { position: relative; display: flex; align-items: flex-end; gap: clamp(14px,3vw,26px); }
.hero-devices svg { display: block; height: auto; }
.hero-devices svg:first-child { filter: drop-shadow(0 20px 30px rgba(var(--ink-rgb),.2)); }
.hero-devices svg:last-child { opacity: .92; filter: drop-shadow(0 16px 26px rgba(var(--ink-rgb),.16)); }
.hero-art-caption { font: 400 10px/1.4 ui-monospace, monospace; letter-spacing: .1em; color: rgba(var(--ink-rgb),.5); text-align: center; }

@media (max-width: 991px) {
  .hero-copy { text-align: center; }
  .hero-copy img.hero-logo, .hero-copy img.hero-logo-light { margin: 0 auto 26px; }
  .hero-copy h1 { margin: 0 auto 26px; }
  .hero-copy p { margin: 0 auto 34px; }
  .hero-cta { justify-content: center; }
}

/* ---------- Moon banner ---------- */
.moon-section {
  max-width: 1280px; margin: 64px auto 0 !important; padding: clamp(70px, 7vw, 105px) clamp(24px, 5vw, 48px) !important; border-radius: 32px; width: 100%;
  text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #071326 0%, #0d1733 40%, #151638 75%, #1d1533 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45) !important;
}
.moon-section > .container,
.moon-section.container {
  max-width: 1280px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 0 !important;
  width: 100% !important;
  position: relative;
  z-index: 2 !important;
}
.moon-puff { position: absolute; border-radius: 50%; z-index: 1; }
.moon-puff--1 { left: 14%; top: 26%; width: 34px; height: 34px; background: rgba(34,193,232,.5); filter: blur(9px); animation: lbpuff 5s ease-out infinite; }
.moon-puff--2 { left: 22%; top: 34%; width: 22px; height: 22px; background: rgba(160,106,208,.42); filter: blur(7px); animation: lbpuff 5s ease-out 1.7s infinite; }
.moon-puff--3 { right: 16%; bottom: 28%; width: 28px; height: 28px; background: rgba(245,166,35,.4); filter: blur(8px); animation: lbpuff 5s ease-out 3.1s infinite; }
.moon-section svg.moon-svg,
.moon-band svg.moon-svg { position: absolute; inset: 0; width: 100%; height: 100%; display: block; pointer-events: none; z-index: 1 !important; }
.moon-band-title { 
  position: relative !important;
  z-index: 2 !important;
  font-family: 'Familjen Grotesk', system-ui, -apple-system, sans-serif !important;
  font-weight: 500 !important; 
  font-size: clamp(32px,5vw,64px) !important; 
  line-height: 1.15 !important; 
  letter-spacing: -.03em !important; 
  color: #ffffff !important;
  margin: 0 auto !important;
  display: inline-block !important;
}

/* ---------- About preview (home) ---------- */
.about-preview {
 padding: 100px 0 0 0;
}
.about-preview > .container,
.about-preview.container {
  max-width: 1280px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  width: 100% !important;
}
.about-preview h2 { font-weight: 600; font-size: clamp(28px,3.4vw,42px); line-height: 1.14; letter-spacing: -.025em; margin: 0 0 20px; }
.about-preview p { margin: 0 0 28px; font-size: 16px; line-height: 1.8; color: var(--body); }
.about-preview-media {
  position: relative; aspect-ratio: 4/3; border-radius: 28px; overflow: hidden;
  background: linear-gradient(150deg, var(--grad-1), var(--grad-2) 60%, var(--grad-3));
  box-shadow: 0 24px 60px rgba(var(--shadow-rgb),.1);
  display: flex; align-items: center; justify-content: center;
}
.about-preview-media img { width: 74%; height: auto; display: block; }
.media-caption {
  position: absolute; bottom: 12px; left: 0; right: 0; text-align: center;
  font: 400 10px/1 ui-monospace, monospace; color: rgba(var(--ink-rgb),.5); letter-spacing: .1em;
}



/* ---------- About page ---------- */
.story-card {
  position: relative; overflow: hidden; border-radius: 32px;
  padding: clamp(34px,4.4vw,62px); margin-bottom: 100px;
  background: linear-gradient(128deg, var(--grad-1) 0%, var(--grad-2) 42%, var(--grad-3) 72%, var(--grad-4) 100%);
}
.story-orb-a { position: absolute; top: -30%; right: -6%; width: 42%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(34,193,232,.34), transparent 66%); animation: lbdrift 14s ease-in-out infinite; }
.story-orb-b { position: absolute; bottom: -34%; left: -8%; width: 40%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(160,106,208,.24), transparent 66%); animation: lbdrift 17s ease-in-out 2s infinite; }
.story-grid { position: relative; }
.story-grid h1 { font-weight: 600; font-size: clamp(34px,4.6vw,56px); line-height: 1.06; letter-spacing: -.03em; margin: 0 0 24px; max-width: 15ch; text-wrap: balance; }
.story-grid p.lead { margin: 0 0 20px; font-size: 19px; line-height: 1.7; color: var(--body-strong); max-width: 46ch; }
.story-grid p.body-text { margin: 0; font-size: 16px; line-height: 1.8; color: var(--body); max-width: 52ch; }
.story-media {
  position: relative; justify-self: stretch; align-self: stretch; min-height: 340px;
  border-radius: 24px; overflow: hidden;
  background: linear-gradient(155deg, var(--grad-1), var(--grad-2) 60%, var(--grad-3));
  box-shadow: 0 22px 50px rgba(var(--shadow-rgb),.1);
}
.story-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }



.pillars-grid { }
.pillar-card { background: var(--panel); border-radius: 22px; padding: 34px 28px; box-shadow: 0 16px 40px rgba(var(--shadow-rgb),.07); }
.pillar-icon { width: 46px; height: 46px; border-radius: 14px; margin-bottom: 20px; display: flex; align-items: center; justify-content: center; }
.pillar-icon i,
.pillar-icon svg,
.pillar-icon .elementor-icon,
.pillar-icon .elementor-icon svg { width: 22px; height: 22px; max-width: 22px; max-height: 22px; font-size: 20px; color: #ffffff; fill: #ffffff; display: block; }
.pillar-card h3 { font-weight: 600; font-size: 19px; letter-spacing: -.01em; margin-bottom: 10px; }
.pillar-card p { margin: 0; font-size: 14px; line-height: 1.75; color: var(--body); }

.office-card { margin-top: 100px; border-radius: 28px; overflow: hidden; background: var(--panel); box-shadow: 0 26px 64px rgba(var(--shadow-rgb),.1); }
.office-card .accent-bar { height: 5px; background: linear-gradient(90deg,#22c1e8,#a06ad0 55%,#f5a623); }
.office-grid { display: flex; flex-wrap: wrap; }
.office-info { padding: clamp(30px,4vw,46px); flex: 1 1 340px; }
.office-badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 8px 14px; border-radius: 999px;
  background: rgba(34,193,232,.12); margin-bottom: 22px;
}
.office-badge i,
.office-badge svg,
.office-badge .elementor-icon,
.office-badge .elementor-icon svg { width: 14px; height: 14px; max-width: 14px; max-height: 14px; font-size: 13px; color: var(--accent-text); fill: var(--accent-text); display: inline-block; }
.office-badge span { font: 500 11px/1 'Schibsted Grotesk', sans-serif; letter-spacing: .22em; color: var(--accent-text); }
.office-info h3 { font-weight: 600; font-size: clamp(21px,2.2vw,27px); line-height: 1.18; letter-spacing: -.02em; margin-bottom: 10px; text-wrap: balance; }
.office-info > p { margin: 0 0 26px; font-size: 15px; line-height: 1.7; color: var(--body); }
.office-rows { display: grid; gap: 16px; border-top: 1px solid var(--line); padding-top: 24px; }
.office-row { display: flex; align-items: flex-start; gap: 14px; }
.office-row i,
.office-row svg,
.office-row .elementor-icon,
.office-row .elementor-icon svg { flex: 0 0 20px; width: 20px; height: 20px; max-width: 20px; max-height: 20px; font-size: 17px; color: var(--accent-text); fill: var(--accent-text); margin-top: 2px; display: block; }
.office-row .label { font: 500 10px/1 'Schibsted Grotesk', sans-serif; letter-spacing: .2em; color: var(--muted); margin-bottom: 6px; }
.office-row .value { font-size: 15px; line-height: 1.6; color: var(--body-strong); text-wrap: pretty; }
.office-media { position: relative; min-height: 340px; flex: 1 1 280px; overflow: hidden; background: linear-gradient(155deg, var(--grad-1), var(--grad-2) 58%, var(--grad-3)); }
.office-media svg.skyline { position: absolute; inset: 0; width: 100%; height: 100%; display: block; pointer-events: none; }
.office-media .photo { position: absolute; inset: 22px; border-radius: 18px; overflow: hidden; box-shadow: 0 18px 40px rgba(var(--shadow-rgb),.14); }
.office-media .photo img { width: 100%; height: 100%; object-fit: cover; display: block; }






/* ---------- Centered Non-Grid Masterpiece Glass Hero Card ---------- */
.products-page { padding: 18px 20px 40px; }
.construction-band {
  position: relative; overflow: hidden; border-radius: 40px;
  min-height: min(85vh,780px); display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: clamp(44px,6vw,84px) clamp(18px,4vw,54px);
  background: linear-gradient(128deg, var(--grad-1) 0%, var(--grad-2) 38%, var(--grad-3) 68%, var(--grad-4) 100%);
}
.construction-orb-a { position: absolute; top: -24%; left: -10%; width: 46%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(34,193,232,.36), transparent 66%); animation: lbdrift 15s ease-in-out infinite; }
.construction-orb-b { position: absolute; bottom: -30%; right: -8%; width: 48%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(160,106,208,.26), transparent 66%); animation: lbdrift 18s ease-in-out 2s infinite; }

.ghost-img { position: absolute; opacity: .17; filter: saturate(.6); pointer-events: none; animation: lbghost 1.4s ease both; }
.ghost-1 { left: 1%; top: 12%; width: min(300px,32vw); transform: rotate(-7deg); animation-delay: .15s; }
.ghost-2 { left: 76%; top: 58%; width: min(320px,34vw); opacity: .17; transform: rotate(6deg); animation-delay: .3s; }
.ghost-3 { left: 7%; top: 68%; width: min(190px,21vw); opacity: .1; transform: rotate(9deg); animation-delay: .45s; }
.ghost-4 { left: 82%; top: 6%; width: min(180px,20vw); opacity: .1; transform: rotate(-11deg); animation-delay: .6s; }
.ghost-5 { left: 44%; top: 80%; width: min(150px,17vw); opacity: .07; transform: rotate(4deg); animation-delay: .75s; }
.ghost-6 { left: 33%; top: 2%; width: min(140px,16vw); opacity: .07; transform: rotate(-5deg); animation-delay: .9s; }

/* Masterpiece Glass Card Container */
.masterpiece-upgrade-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 630px;
  margin: 0 auto;
  padding: clamp(38px, 5vw, 56px) clamp(20px, 4.5vw, 48px);
  border-radius: 36px;
  background: rgba(8, 17, 36, 0.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(100, 150, 220, 0.22);
  box-shadow: 
    0 30px 90px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(34, 193, 232, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}
.masterpiece-upgrade-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 193, 232, 0.45);
  box-shadow: 
    0 40px 110px rgba(0, 0, 0, 0.65),
    0 0 50px rgba(34, 193, 232, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.card-border-glow {
  position: absolute; inset: 0; border-radius: 36px; padding: 1px;
  background: linear-gradient(135deg, rgba(34,193,232,0.4), rgba(160,106,208,0.2), rgba(245,166,35,0.2), rgba(34,193,232,0.4));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}

.card-ambient-light {
  position: absolute; top: -30%; left: 50%; transform: translateX(-50%);
  width: 90%; height: 75%; border-radius: 50%;
  background: radial-gradient(ellipse at 50% 30%, rgba(34, 193, 232, 0.25), rgba(160,106,208,0.1) 50%, transparent 75%);
  pointer-events: none; z-index: 0;
}

.card-grid-watermark {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 20px 20px; opacity: 0.4; pointer-events: none; z-index: 0;
}

/* Hologram Pedestal Stage */
.holo-stage-ring {
  position: relative; z-index: 1; display: flex; align-items: center; justify-content: center;
  width: 100%; max-width: 320px; margin-bottom: 20px;
}
.holo-glow-orb {
  position: absolute; inset: -10%; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(34, 193, 232, 0.28), rgba(160, 106, 208, 0.14) 50%, transparent 75%);
  filter: blur(20px); animation: holoPulse 4s ease-in-out infinite alternate; pointer-events: none;
}
@keyframes holoPulse {
  0% { transform: scale(0.94); opacity: 0.7; }
  100% { transform: scale(1.08); opacity: 1; }
}

/* Floating Moon Mark */
.construction-mark {
  position: relative; z-index: 1;
  width: min(290px, 64vw);
  transition: transform .4s ease;
}
.construction-mark:hover { transform: scale(1.03); }
.construction-mark .glow { position: absolute; inset: -16% -10%; border-radius: 50%; background: radial-gradient(ellipse at 50% 50%, rgba(var(--glass-rgb),.85), rgba(var(--glass-rgb),.28) 46%, transparent 72%); }
.construction-mark img { position: relative; width: 100%; height: auto; display: block; filter: drop-shadow(0 18px 36px rgba(0,0,0,0.3)); }
.construction-mark .puff { position: absolute; border-radius: 50%; }
.construction-mark .puff--1 { right: 0; top: 22%; width: 36px; height: 36px; background: rgba(34,193,232,.5); filter: blur(10px); animation: lbpuff 4.6s ease-out .4s infinite; }
.construction-mark .puff--2 { right: 8%; top: 38%; width: 24px; height: 24px; background: rgba(160,106,208,.42); filter: blur(8px); animation: lbpuff 4.6s ease-out 1.9s infinite; }
.construction-mark .puff--3 { right: -6%; top: 52%; width: 17px; height: 17px; background: rgba(245,166,35,.42); filter: blur(6px); animation: lbpuff 4.6s ease-out 3.3s infinite; }

/* Smart Status Badge */
.smart-status-badge {
  position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; border-radius: 999px; background: rgba(14, 30, 58, 0.65);
  border: 1px solid rgba(34, 193, 232, 0.35); margin-bottom: 20px;
  backdrop-filter: blur(10px); box-shadow: 0 0 20px rgba(34, 193, 232, 0.15);
}
.smart-status-badge .live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #22c1e8;
  box-shadow: 0 0 0 3px rgba(34,193,232,.25), 0 0 10px #22c1e8;
  animation: liveDotPulse 1.8s infinite ease-in-out;
}
@keyframes liveDotPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 3px rgba(34,193,232,.25), 0 0 10px #22c1e8; }
  50% { transform: scale(1.25); box-shadow: 0 0 0 7px rgba(34,193,232,.06), 0 0 14px #22c1e8; }
}
.smart-status-badge span { font: 600 11px/1 'Schibsted Grotesk', sans-serif; letter-spacing: .2em; color: #22c1e8; text-transform: uppercase; }

/* Headline Typography */
.smart-headline {
  position: relative; z-index: 1; font-weight: 700;
  font-size: clamp(26px, 4vw, 42px); line-height: 1.18; letter-spacing: -.03em;
  margin: 0 0 22px; max-width: 18ch; text-wrap: balance; color: #ffffff; text-align: center;
}

/* Precise Gradient for "better viewing experience" matching image */
.smart-glow-text {
  background: linear-gradient(90deg, #38bdf8 0%, #60a5fa 28%, #a855f7 65%, #f43f5e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.smart-cyan-text {
  color: #38bdf8;
  -webkit-text-fill-color: #38bdf8;
}

.smart-gradient-text {
  background: linear-gradient(90deg, #60a5fa 0%, #a855f7 50%, #f43f5e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

[data-theme="light"] .smart-glow-text {
  background: linear-gradient(90deg, #0284c7 0%, #4f46e5 40%, #9333ea 70%, #e11d48 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Slogan Pill */
.smart-slogan {
  position: relative; z-index: 1; font-family: 'Familjen Grotesk', sans-serif;
  font-weight: 500; font-size: clamp(17px, 2vw, 22px); letter-spacing: -.015em;
  color: #38bdf8; display: inline-flex !important; align-items: center !important; gap: 9px !important;
  padding: 10px 26px; border-radius: 999px;
  background: rgba(14, 30, 58, 0.65); border: 1px solid rgba(34, 193, 232, 0.3);
  margin-bottom: 30px; backdrop-filter: blur(10px);
  white-space: nowrap !important;
}
.smart-slogan * {
  white-space: nowrap !important;
}
.smart-slogan i,
.smart-slogan svg,
.smart-slogan img,
.smart-slogan .elementor-icon,
.smart-slogan .e-font-icon-svg {
  width: 18px !important;
  height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  font-size: 16px !important;
  color: #38bdf8 !important;
  fill: #38bdf8 !important;
  flex: 0 0 18px !important;
  object-fit: contain !important;
  display: inline-block !important;
}

/* Smart CTA Buttons */
.smart-cta-group {
  position: relative; z-index: 1; display: flex !important; gap: 14px !important;
  flex-wrap: wrap !important; justify-content: center !important; align-items: center !important; width: 100%;
}

.smart-btn {
  display: inline-flex !important; align-items: center !important; justify-content: center !important; gap: 10px !important;
  padding: 14px 30px !important; border-radius: 999px !important;
  font: 600 12px/1 'Schibsted Grotesk', sans-serif !important; letter-spacing: .12em !important;
  text-transform: uppercase !important; transition: all .3s ease !important; cursor: pointer !important; text-decoration: none !important;
  white-space: nowrap !important;
  flex-direction: row !important;
}
.smart-btn * {
  white-space: nowrap !important;
}

.smart-btn i,
.smart-btn svg,
.smart-btn img,
.smart-btn .elementor-icon,
.smart-btn .e-font-icon-svg {
  width: 15px !important;
  height: 15px !important;
  max-width: 15px !important;
  max-height: 15px !important;
  font-size: 14px !important;
  flex: 0 0 15px !important;
  object-fit: contain !important;
  display: inline-block !important;
}

/* Glowing Filled Primary Cyan Button */
.smart-btn-primary {
  background: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%) !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 0 25px rgba(0, 180, 216, 0.6), 0 8px 20px rgba(0, 119, 182, 0.4) !important;
}
.smart-btn-primary i,
.smart-btn-primary svg,
.smart-btn-primary .elementor-icon,
.smart-btn-primary .e-font-icon-svg {
  color: #ffffff !important;
  fill: #ffffff !important;
}
.smart-btn-primary:hover {
  transform: translateY(-2px) !important;
  background: linear-gradient(135deg, #00c4e8 0%, #0087c6 100%) !important;
  box-shadow: 0 0 35px rgba(0, 196, 232, 0.8), 0 10px 25px rgba(0, 119, 182, 0.5) !important;
  color: #ffffff !important;
}

/* Dark Glass Secondary Button */
.smart-btn-glass {
  background: rgba(15, 25, 48, 0.6) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  backdrop-filter: blur(12px) !important;
}
.smart-btn-glass i,
.smart-btn-glass svg,
.smart-btn-glass .elementor-icon,
.smart-btn-glass .e-font-icon-svg {
  color: #ffffff !important;
  fill: #ffffff !important;
}
.smart-btn-glass:hover {
  transform: translateY(-2px) !important;
  border-color: #38bdf8 !important;
  color: #38bdf8 !important;
  background: rgba(20, 35, 65, 0.8) !important;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.25) !important;
}
.smart-btn-glass:hover i,
.smart-btn-glass:hover svg,
.smart-btn-glass:hover .elementor-icon,
.smart-btn-glass:hover .e-font-icon-svg {
  color: #38bdf8 !important;
  fill: #38bdf8 !important;
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES FOR THIS SECTION
   ========================================== */

/* Tablet Screens (<= 991px) */
@media (max-width: 991px) {
  .products-page { padding: 14px 16px 32px; }
  .construction-band {
    border-radius: 32px;
    padding: clamp(36px, 5vw, 64px) 18px;
    min-height: min(80vh, 700px);
  }
  .masterpiece-upgrade-card {
    border-radius: 32px;
    padding: clamp(32px, 4.5vw, 48px) clamp(16px, 4vw, 32px);
    max-width: 580px;
  }
  .card-border-glow { border-radius: 32px; }
  .smart-headline { font-size: clamp(22px, 3.8vw, 36px); }
  .smart-slogan { font-size: clamp(15px, 2vw, 20px); padding: 8px 22px; margin-bottom: 26px; }
  .smart-cta-group { gap: 12px; }
  .smart-btn { padding: 13px 26px; font-size: 11px; }
}

/* Mobile Screens (<= 576px) */
@media (max-width: 576px) {
  .products-page { padding: 10px 10px 24px; }
  .construction-band {
    border-radius: 24px;
    padding: 32px 14px;
    min-height: auto;
  }
  .masterpiece-upgrade-card {
    border-radius: 24px;
    padding: 28px 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  }
  .card-border-glow { border-radius: 24px; }
  .holo-stage-ring { max-width: 240px; margin-bottom: 16px; }
  .construction-mark { width: 80vw; max-width: 240px; }
  
  .smart-status-badge {
    padding: 7px 16px;
    margin-bottom: 16px;
  }
  .smart-status-badge span {
    font-size: 10px;
    letter-spacing: .15em;
  }
  
  .smart-headline {
    font-size: clamp(20px, 6vw, 28px);
    line-height: 1.22;
    margin-bottom: 16px;
  }
  
  .smart-slogan {
    font-size: 14px;
    padding: 7px 18px;
    margin-bottom: 22px;
  }
  
  .smart-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .smart-btn {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 11px;
  }
}

/* Extra Small Screens (<= 380px) */
@media (max-width: 380px) {
  .masterpiece-upgrade-card { padding: 22px 12px; }
  .smart-headline { font-size: 19px; }
  .smart-status-badge span { font-size: 9px; letter-spacing: .1em; }
}


/* ---------- Legal pages ---------- */
.legal-page h1 { font-weight: 600; font-size: clamp(36px,5vw,60px); line-height: 1.08; letter-spacing: -.03em; margin: 0 0 16px; }
.legal-page > p.intro { margin: 0 0 48px; font-size: 16px; line-height: 1.75; color: var(--body); max-width: 56ch; }
.legal-sections { display: grid; gap: 34px; }
.legal-section { display: grid; gap: 12px; }
.legal-section .row { display: flex; align-items: baseline; gap: 14px; }
.legal-section .num { font: 400 12px/1 ui-monospace, monospace; color: var(--muted); }
.legal-section h2 { font-weight: 600; font-size: 21px; letter-spacing: -.015em; }
.legal-section p { margin: 0 0 0 34px; font-size: 15px; line-height: 1.85; color: var(--body); max-width: 64ch; }
.legal-footer {
  margin-top: 56px; padding-top: 26px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 13px; color: var(--muted);
}

[data-theme="light"] .legal-page h1,
html[data-theme="light"] .legal-page h1,
body[data-theme="light"] .legal-page h1,
.light-mode .legal-page h1,
.light-theme .legal-page h1 {
  color: #0d1b3e !important;
}

[data-theme="light"] .legal-section h2,
html[data-theme="light"] .legal-section h2,
body[data-theme="light"] .legal-section h2,
.light-mode .legal-section h2,
.light-theme .legal-section h2 {
  color: #0d1b3e !important;
}

/* ---------- FAQ page ---------- */
.faq-page > p.intro { margin: 0 0 32px; max-width: 52ch; font-size: 16px; line-height: 1.75; color: var(--body); }
.section-divider { display: flex; align-items: center; gap: 12px; margin: 18px 0; }

.section-divider span.label {
    font: 500 11px/1 'Schibsted Grotesk', sans-serif;
    letter-spacing: .22em;
    color: var(--accent-text);
    text-transform: uppercase !important;
}

.section-divider .rule { flex: 1; height: 1px; background: var(--line); }

/* FAQ Search & Category Filter Controls */
.faq-controls { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.faq-search-wrap { position: relative; max-width: 600px; }
.faq-search-input {
  width: 100%; padding: 16px 20px 16px 48px; border-radius: 14px;
  border: 1px solid var(--line); background: var(--panel); color: var(--ink);
  font-family: inherit; font-size: 15px; outline: none; transition: border-color .25s ease, box-shadow .25s ease;
}
.faq-search-input:focus { border-color: var(--accent-text); box-shadow: 0 0 0 3px rgba(34, 193, 232, 0.15); }
.faq-search-icon { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: var(--muted); font-size: 16px; pointer-events: none; }
.faq-categories { display: flex; flex-wrap: wrap; gap: 10px; }
.faq-cat-btn {
  padding: 9px 20px; border-radius: 30px; border: 1px solid var(--line);
  background: var(--panel); color: var(--body); font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 13px; font-weight: 500; cursor: pointer; transition: all .25s ease;
}
.faq-cat-btn:hover { border-color: var(--accent-text); color: var(--accent-text); transform: translateY(-1px); }
.faq-cat-btn.is-active { background: linear-gradient(135deg,#22c1e8,#0a86d6); color: #ffffff; border-color: transparent; box-shadow: 0 4px 14px rgba(34, 193, 232, 0.3); }

/* FAQ List & Item Toggles (Theme & Custom Widget Support) */
.faq-list, .faq-container, .custom-faq-list { display: grid; gap: 16px; }
.faq-item, .faq-box, .custom-faq-item, .custom-faq {
  background: var(--panel); border: 1px solid var(--line); border-radius: 20px;
  box-shadow: 0 8px 30px rgba(var(--shadow-rgb),.04); overflow: hidden;
  transition: border-color .3s ease, box-shadow .3s ease, transform .25s ease;
}
.faq-item:hover, .faq-box:hover, .custom-faq-item:hover, .custom-faq:hover { border-color: var(--line-strong); box-shadow: 0 12px 36px rgba(var(--shadow-rgb),.08); }
.faq-item.is-open, .faq-item.active, .faq-box.is-open, .faq-box.active, .custom-faq-item.is-open, .custom-faq-item.active, .custom-faq.is-open, .custom-faq.active {
  border-color: rgba(34, 193, 232, 0.35); box-shadow: 0 14px 40px rgba(var(--shadow-rgb),.12), 0 0 24px rgba(34, 193, 232, 0.06);
}

.faq-question, .faq-title, .faq-header, .faq-toggle, .custom-faq-title {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 28px; cursor: pointer; transition: color .25s ease, padding .25s ease; color: var(--ink);
  background: none; border: none; text-align: left; font-family: 'Familjen Grotesk', sans-serif;
  font-weight: 600; font-size: 17.5px; line-height: 1.4; letter-spacing: -.01em; outline: none; margin: 0;
}
.faq-question:focus-visible, .faq-title:focus-visible, .faq-header:focus-visible { outline: 2px solid var(--accent-text); outline-offset: -2px; }
.faq-question:hover, .faq-title:hover, .faq-header:hover, .faq-toggle:hover { color: var(--accent-text); }
.faq-question.is-open, .faq-question.active, .faq-title.is-open, .faq-title.active, .faq-header.is-open, .faq-header.active { color: var(--accent-text); padding-bottom: 14px; }

/* Dynamic Toggle Badge Icon */
.faq-toggle-badge, .faq-icon, .toggle-icon-wrap {
  flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%;
  background: rgba(var(--glass-rgb), 0.8); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; color: var(--ink);
  transition: transform .35s cubic-bezier(0.34, 1.56, 0.64, 1), background-color .3s ease, border-color .3s ease, color .3s ease;
}
.faq-question:hover .faq-toggle-badge, .faq-title:hover .faq-toggle-badge, .faq-header:hover .faq-icon { border-color: var(--accent-text); color: var(--accent-text); background: rgba(34, 193, 232, 0.1); }
.faq-question.is-open .faq-toggle-badge, .faq-question.active .faq-toggle-badge, .faq-title.is-open .faq-toggle-badge, .faq-header.is-open .faq-icon { transform: rotate(180deg); background: linear-gradient(135deg,#22c1e8,#0a86d6); color: #ffffff; border-color: transparent; }
.faq-toggle-icon { flex: 0 0 auto; width: 15px; height: 15px; position: relative; transition: transform .3s ease; }
.faq-toggle-icon .h-bar { position: absolute; top: 7px; left: 0; width: 15px; height: 2px; border-radius: 2px; background: currentColor; }
.faq-toggle-icon .v-bar { position: absolute; left: 6.5px; top: 0; width: 2px; height: 15px; border-radius: 2px; background: currentColor; transition: opacity .3s ease; }
.faq-question.is-open .faq-toggle-icon, .faq-question.active .faq-toggle-icon { transform: rotate(180deg); }
.faq-question.is-open .faq-toggle-icon .v-bar, .faq-question.active .faq-toggle-icon .v-bar { opacity: 0; }

/* Ultra-smooth Fade & Height Expansion Answer Container */
.faq-answer, .faq-content, .faq-body, .custom-faq-content {
  display: grid;
  grid-template-rows: 0fr;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  transition: grid-template-rows 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              opacity 0.35s ease-out, 
              visibility 0.35s ease-out;
  will-change: grid-template-rows, max-height, opacity;
}

.faq-answer > *, .faq-content > *, .faq-body > *, .custom-faq-content > * {
  min-height: 0;
  overflow: hidden;
  transform: translateY(-10px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease-out;
}

.faq-answer.is-open, .faq-answer.active, 
.faq-content.is-open, .faq-content.active, 
.faq-body.is-open, .faq-body.active, 
.custom-faq-content.is-open, .custom-faq-content.active {
  grid-template-rows: 1fr !important;
  max-height: 2000px !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.faq-answer.is-open > *, .faq-answer.active > *, 
.faq-content.is-open > *, .faq-content.active > *, 
.faq-body.is-open > *, .faq-body.active > *, 
.custom-faq-content.is-open > *, .custom-faq-content.active > * {
  transform: translateY(0) !important;
  opacity: 1 !important;
}

.faq-answer-inner, .faq-content-inner, .faq-body-inner {
  padding: 0 28px 24px;
  font-size: 15px;
  line-height: 1.85;
  color: var(--body);
  max-width: 95%;
  min-height: 0;
}

.faq-no-results { text-align: center; padding: 48px 20px; color: var(--muted); font-size: 16px; background: var(--panel); border-radius: 20px; border: 1px dashed var(--line); }

.faq-note-card {
  border-radius: 20px; border: 1px dashed var(--line-strong); background: rgba(var(--glass-rgb),.7);
  padding: 30px 28px; display: flex; align-items: flex-start; gap: 16px; margin-top: 36px;
}
.faq-note-card .icon-chip {
  flex: 0 0 auto; width: 42px; height: 42px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg,#22c1e8,#0a86d6);
}
.faq-note-card h3 { font-weight: 600; font-size: 17px; margin-bottom: 8px; }
.faq-note-card p { margin: 0; font-size: 15px; line-height: 1.75; color: var(--body); max-width: 58ch; }
.icon-chip svg {
	fill: #fff;
	font-size: 20px;
	width: 24px;
}

/* ---------- Contact page ---------- */
.contact-page > p.intro { margin: 0 0 54px; max-width: 52ch; font-size: 16px; line-height: 1.75; color: var(--body); }
.contact-grid { }
.contact-form {
  background: var(--panel); border-radius: 26px; padding: 36px;
  box-shadow: 0 20px 50px rgba(var(--shadow-rgb),.07); display: grid; gap: 20px;
}
.form-group { display: grid; gap: 8px; }
.form-group label { font: 500 11px/1 'Schibsted Grotesk', sans-serif; letter-spacing: .14em; color: var(--muted); }
.form-group input, .form-group textarea {
  background: var(--panel-2); border: 1px solid var(--line); border-radius: 14px;
  color: var(--ink); font: 400 15px/1 'Schibsted Grotesk', sans-serif; padding: 15px 16px;
  transition: border-color .25s, box-shadow .25s;
}
.form-group textarea { line-height: 1.6; resize: vertical; }
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: #22c1e8; box-shadow: 0 0 0 4px rgba(34,193,232,.12);
}
.contact-form .btn-primary { justify-self: start; padding: 17px 34px; box-shadow: 0 12px 28px rgba(10,134,214,.28); }
.contact-form .btn-primary:hover { box-shadow: 0 18px 38px rgba(10,134,214,.4); }
.form-note { font-size: 12px; line-height: 1.6; color: var(--muted); }

.contact-side { display: grid; gap: 16px; align-content: start; }
.contact-card {
  background: var(--panel); border-radius: 20px; padding: 24px 26px;
  box-shadow: 0 12px 34px rgba(var(--shadow-rgb),.06);
  display: flex; align-items: flex-start; gap: 16px;
  transition: box-shadow .25s, transform .25s;
}
.contact-card .icon-chip { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 13px; display: flex; align-items: center; justify-content: center; }
.contact-card .icon-chip i,
.contact-card .icon-chip svg,
.contact-card .icon-chip .elementor-icon,
.contact-card .icon-chip .elementor-icon svg { width: 20px; height: 20px; max-width: 20px; max-height: 20px; font-size: 18px; color: #ffffff; fill: #ffffff; display: block; }
.contact-card .label { font: 500 10px/1 'Schibsted Grotesk', sans-serif; letter-spacing: .22em; color: var(--muted); margin-bottom: 8px; }
.contact-card .value { font-size: 15px; line-height: 1.7; color: var(--body-strong); text-wrap: pretty; }

.social-card { background: var(--panel); border-radius: 20px; padding: 24px 26px; box-shadow: 0 12px 34px rgba(var(--shadow-rgb),.06); }
.social-card .label { font: 500 10px/1 'Schibsted Grotesk', sans-serif; letter-spacing: .22em; color: var(--muted); margin-bottom: 16px; }
.social-pills { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.social-pill {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 18px; border-radius: 999px;
  border: 1px solid var(--line); color: var(--body); font: 400 13px/1 'Schibsted Grotesk', sans-serif;
  white-space: nowrap; text-decoration: none !important;
  transition: border-color .25s, color .25s, box-shadow .25s, transform .25s;
}
.social-pill i,
.social-pill svg,
.social-pill .elementor-icon,
.social-pill .elementor-icon svg {
  width: 14px; height: 14px; max-width: 14px; max-height: 14px; font-size: 13px; color: currentColor; fill: currentColor; display: inline-block; flex: 0 0 14px;
}
.social-pill span { white-space: nowrap; }
.social-pill:hover { border-color: #22c1e8; color: var(--ink); box-shadow: 0 8px 20px rgba(34,193,232,.16); transform: translateY(-2px); }

.form-placeholder-notice {
  padding: 48px 24px;
  text-align: center;
  border: 1px dashed var(--line-strong, rgba(255,255,255,0.18));
  border-radius: 18px;
  background: rgba(var(--glass-rgb), 0.3);
}

.custom-form-shortcode input {
	background: var(--panel-2);
	border: 1px solid var(--line);
	border-radius: 14px;
	color: var(--ink);
	font: 400 15px/1 'Schibsted Grotesk', sans-serif;
	padding: 15px 16px;
	transition: border-color .25s, box-shadow .25s;
}

.custom-form-shortcode label {
	font: 500 11px/1 'Schibsted Grotesk', sans-serif;
	letter-spacing: .14em;
	color: var(--muted);
}

.content-page.faq-page, .content-page.faq-page.rise {
    max-width: 900px;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-top: 30px !important;
    width: 100%;
    margin-bottom: 30px !important;
}

.content-page.contact-page,
.content-page.contact-page.wide,
.content-page.contact-page.wide.rise {
	margin-top: 120px !important;
}

.content-page.about-page,
.content-page.about-page.rise {
	margin-top: 120px !important;
}

.content-page.parivacy-terms {
	max-width: 860px;
	width: 100%;
	padding: 0 32px;
	margin: auto;
}


/* ---------- Verify page ---------- */
.verify-page .intro { margin: 0 auto 44px; max-width: 48ch; font-size: 16px; line-height: 1.75; color: var(--body); }
.verify-card { background: var(--panel); border-radius: 28px; padding: 40px; box-shadow: 0 22px 56px rgba(var(--shadow-rgb),.08); }
.qr-grid {
  width: 194px; height: 194px; margin: 0 auto 14px; padding: 12px; border-radius: 16px;
  background: var(--panel-2); display: grid; grid-template-columns: repeat(21,1fr); grid-auto-rows: 1fr;
}
.qr-caption { font: 400 10px/1 ui-monospace, monospace; color: var(--muted); letter-spacing: .1em; margin-bottom: 32px; }
.verify-form { display: flex; gap: 10px; max-width: 440px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.verify-form input {
  flex: 1 1 240px; background: var(--panel-2); border: 1px solid var(--line); border-radius: 14px;
  color: var(--muted); font: 400 15px/1 ui-monospace, monospace; padding: 16px; text-align: center; letter-spacing: .12em;
}
.verify-page .note { margin-top: 24px; font-size: 13px; line-height: 1.75; color: var(--body-soft); max-width: 50ch; margin-left: auto; margin-right: auto; }



/* ============================================================
   Lunar Bar — Card & Hero Moon Banner Stylesheet (css/card.css)
   ============================================================ */

/* ---------- Ultra-Modern Luxury Story Experience ---------- */
.luxury-story-experience {
  margin-top: 0px;
  margin-bottom: 100px;
  position: relative;
}

.luxury-section-title {
  text-align: center;
  margin-bottom: 56px;
}

.luxury-section-title .eyebrow {
  margin-bottom: 14px;
}

.luxury-section-title h2 {
  font-family: 'Familjen Grotesk', sans-serif;
  font-weight: 600;
  font-size: clamp(30px, 4.4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
}

/* Staggered Luxury Grid Cards */
.luxury-story-deck {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.luxury-card {
  position: relative;
  border-radius: 40px;
  padding: clamp(36px, 5vw, 64px);
  background: linear-gradient(145deg, rgba(var(--glass-rgb), 0.85) 0%, rgba(var(--glass-rgb), 0.45) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(var(--ink-rgb), 0.15);
  box-shadow: 0 30px 80px rgba(var(--shadow-rgb), 0.12);
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s ease, border-color 0.5s ease;
}

.luxury-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 193, 232, 0.4);
  box-shadow: 0 40px 100px rgba(var(--shadow-rgb), 0.22);
}

/* Watermark Number in Card Background */
.luxury-card .watermark-num {
  position: absolute;
  top: -20px;
  right: 30px;
  font-family: 'Familjen Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(120px, 18vw, 220px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(var(--ink-rgb), 0.07);
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

.luxury-card.reverse .watermark-num {
  right: auto;
  left: 30px;
}

.luxury-card-content {
  position: relative;
  z-index: 2;
  align-items: stretch;
}

.luxury-card .tag-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: 600 11px/1 'Schibsted Grotesk', sans-serif;
  letter-spacing: 0.22em;
  color: var(--accent-text);
  margin-bottom: 20px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--panel-2);
  border: 1px solid var(--line-strong);
}

.luxury-card h3 {
  font-family: 'Familjen Grotesk', sans-serif;
  font-weight: 600;
  font-size: clamp(26px, 3.6vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--ink);
}

.luxury-card p.lead {
  font-size: 18px;
  line-height: 1.75;
  color: var(--body-strong);
  margin-bottom: 18px;
}

.luxury-card p.body-text {
  font-size: 15px;
  line-height: 1.85;
  color: var(--body);
  margin-bottom: 24px;
}

/* Feature Pills Row */
.luxury-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.luxury-pill-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--body-soft);
  font: 500 12px/1 'Schibsted Grotesk', sans-serif;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
}

.luxury-pill-item i {
  color: var(--accent-text);
  font-size: 13px;
}

.luxury-pill-item:hover {
  border-color: #22c1e8;
  color: var(--ink);
  transform: translateY(-2px);
}

/* Luxury Image Showcase Wrapper */
.luxury-image-showcase {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(var(--shadow-rgb), 0.18);
  border: 1px solid rgba(var(--ink-rgb), 0.16);
  background: #0b1324;
}

.luxury-image-showcase img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.luxury-card:hover .luxury-image-showcase img {
  transform: scale(1.07);
}

.luxury-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(5,7,15,0.65) 100%);
  pointer-events: none;
}

.luxury-image-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(13, 21, 38, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font: 600 11px/1 'Schibsted Grotesk', sans-serif;
  letter-spacing: 0.12em;
  box-shadow: 0 12px 26px rgba(0,0,0,0.35);
}

.luxury-image-badge .badge-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c1e8, #0a86d6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 10px;
}

/* Standalone Hero Moon Banner (Outside Card 4) */
.standalone-moon-banner {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  margin-top: 56px;
  margin-bottom: 64px;
  padding: clamp(48px, 6vw, 80px) clamp(32px, 5vw, 64px);
  background: linear-gradient(135deg, var(--grad-1) 0%, var(--grad-2) 38%, var(--grad-3) 72%, var(--grad-4) 100%);
  border: 1px solid rgba(34, 193, 232, 0.32);
  box-shadow: 0 30px 80px rgba(var(--shadow-rgb), 0.16);
  text-align: center;
}

.standalone-moon-banner .banner-orb-a {
  position: absolute;
  top: -40%;
  left: 20%;
  width: 40%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 193, 232, 0.28), transparent 66%);
  animation: lbdrift 15s ease-in-out infinite;
  pointer-events: none;
}

.standalone-moon-banner .banner-orb-b {
  position: absolute;
  bottom: -40%;
  right: 15%;
  width: 38%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(160, 106, 208, 0.25), transparent 66%);
  animation: lbdrift 18s ease-in-out 2s infinite;
  pointer-events: none;
}

.standalone-moon-banner .banner-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}

.standalone-moon-banner .moon-icon-badge {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, #22c1e8, #a06ad0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 28px;
  box-shadow: 0 14px 34px rgba(34, 193, 232, 0.38);
  animation: lbfloat 5s ease-in-out infinite;
}

.standalone-moon-banner h2.moon-tagline-title {
  font-family: 'Familjen Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(30px, 4.8vw, 54px);
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
  color: var(--ink);
  text-shadow: 0 10px 30px rgba(var(--shadow-rgb), 0.2);
}

.standalone-moon-banner p.moon-tagline-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--body-strong);
  margin: 0 auto 32px;
  max-width: 52ch;
}

.standalone-moon-banner .banner-actions {
  display: flex !important;
  gap: 16px !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap !important;
}

.standalone-moon-banner .moon-icon-badge i,
.standalone-moon-banner .moon-icon-badge svg,
.standalone-moon-banner .moon-icon-badge img,
.standalone-moon-banner .moon-icon-badge .elementor-icon,
.standalone-moon-banner .moon-icon-badge .e-font-icon-svg {
  width: 28px !important;
  height: 28px !important;
  max-width: 28px !important;
  max-height: 28px !important;
  font-size: 28px !important;
  color: #ffffff !important;
  fill: #ffffff !important;
  display: inline-block !important;
}

.standalone-moon-banner .banner-actions a,
.standalone-moon-banner .banner-actions .btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 16px 32px !important;
  height: 52px !important;
  border-radius: 999px !important;
  white-space: nowrap !important;
}

.standalone-moon-banner .banner-actions a *,
.standalone-moon-banner .banner-actions .btn * {
  white-space: nowrap !important;
}

.standalone-moon-banner .banner-actions a i,
.standalone-moon-banner .banner-actions a svg,
.standalone-moon-banner .banner-actions a img,
.standalone-moon-banner .banner-actions a .elementor-icon,
.standalone-moon-banner .banner-actions a .e-font-icon-svg,
.standalone-moon-banner .banner-actions .btn i,
.standalone-moon-banner .banner-actions .btn svg,
.standalone-moon-banner .banner-actions .btn img,
.standalone-moon-banner .banner-actions .btn .elementor-icon,
.standalone-moon-banner .banner-actions .btn .e-font-icon-svg {
  width: 14px !important;
  height: 14px !important;
  max-width: 14px !important;
  max-height: 14px !important;
  font-size: 14px !important;
  flex: 0 0 14px !important;
  object-fit: contain !important;
  display: inline-block !important;
}

/* Light Theme Overrides for Luxury Story Deck & Moon Banner */
[data-theme="light"] .luxury-card {
  background: linear-gradient(145deg, #ffffff 0%, #f4f8fd 100%);
  border-color: var(--line);
  box-shadow: 0 20px 50px rgba(13,27,62,0.06);
}

[data-theme="light"] .luxury-card:hover {
  border-color: #22c1e8;
  box-shadow: 0 28px 70px rgba(34,193,232,0.15);
}

[data-theme="light"] .luxury-card .watermark-num {
  -webkit-text-stroke: 1.5px rgba(13, 27, 62, 0.07);
}

[data-theme="light"] .luxury-image-showcase {
  background: #0b1324;
  border-color: rgba(13, 27, 62, 0.12);
  box-shadow: 0 20px 50px rgba(13,27,62,0.09);
}

[data-theme="light"] .luxury-image-overlay {
  background: linear-gradient(180deg, transparent 70%, rgba(5,7,15,0.4) 100%);
}

[data-theme="light"] .luxury-image-badge {
  background: rgba(13, 21, 38, 0.88);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 24px rgba(0,0,0,0.3);
}

[data-theme="light"] .luxury-pill-item {
  background: #ffffff;
  border-color: var(--line);
  color: var(--body-strong);
}

[data-theme="light"] .luxury-pill-item:hover {
  border-color: #22c1e8;
  background: #ffffff;
}

[data-theme="light"] .standalone-moon-banner {
  background: linear-gradient(135deg, #0d1b3e 0%, #152752 50%, #1a1636 100%);
  color: #ffffff;
  border-color: rgba(34, 193, 232, 0.4);
}

[data-theme="light"] .standalone-moon-banner h2.moon-tagline-title {
  color: #ffffff;
}

[data-theme="light"] .standalone-moon-banner p.moon-tagline-sub {
  color: #c6d3e8;
}

/* ---------- Responsive Breakpoints & Mobile Optimization ---------- */
@media (max-width: 991px) {
  .luxury-story-experience {
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .luxury-story-deck {
    gap: 40px;
  }

  .luxury-card {
    padding: 28px 24px;
    border-radius: 28px;
  }

  .luxury-card .watermark-num {
    font-size: 110px;
    top: -10px;
    right: 15px;
  }

  .luxury-card.reverse .watermark-num {
    left: 15px;
  }

  .luxury-image-showcase {
    min-height: 280px;
    aspect-ratio: 4/3;
    border-radius: 22px;
    margin-top: 10px;
  }

  .standalone-moon-banner {
    padding: 42px 24px;
    border-radius: 28px;
    margin-top: 40px;
    margin-bottom: 48px;
  }

  .standalone-moon-banner h2.moon-tagline-title {
    font-size: 32px;
  }
}

@media (max-width: 640px) {
  .luxury-card {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .luxury-card h3 {
    font-size: 22px;
  }

  .luxury-card p.lead {
    font-size: 15px;
  }

  .luxury-image-showcase {
    min-height: 230px;
  }

  .standalone-moon-banner {
    padding: 34px 18px;
    border-radius: 22px;
  }

  .standalone-moon-banner .moon-icon-badge {
    width: 52px;
    height: 52px;
    font-size: 22px;
  }

  .standalone-moon-banner h2.moon-tagline-title {
    font-size: 26px;
  }
}



/* ---------- Footer ---------- */
.site-footer { 
  margin-top: 100px; 
  border-top: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.footer-top {
  position: relative; overflow: hidden; border-radius: 40px 40px 0 0;
  padding: clamp(56px,6vw,90px) clamp(28px,5vw,60px) 0;
  background: linear-gradient(150deg, var(--grad-1) 0%, var(--grad-2) 40%, var(--grad-3) 70%, var(--grad-4) 100%);
}
.footer-orb-a { position: absolute; top: -30%; left: -8%; width: 44%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(34,193,232,.3), transparent 66%); animation: lbdrift 16s ease-in-out infinite; }
.footer-orb-b { position: absolute; top: -20%; right: -6%; width: 38%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(160,106,208,.22), transparent 66%); animation: lbdrift 19s ease-in-out 2s infinite; }
.footer-inner { position: relative; max-width: 1280px; margin: 0 auto; }
.footer-tagline { text-align: center; margin-bottom: clamp(44px,5vw,68px); }
.footer-tagline p { font-family: 'Familjen Grotesk', sans-serif; font-weight: 400; font-size: clamp(26px,4.2vw,52px); line-height: 1.14; letter-spacing: -.032em; margin: 0; }
.footer-grid { padding-bottom: clamp(40px,5vw,60px); }
.footer-col img { display: var(--logo-on-dark); height: 24px !important; width: auto; margin-bottom: 16px; }
.footer-col img.footer-logo-light { display: var(--logo-on-light); }
.footer-col .desc { font-size: 15px; line-height: 1.75; color: var(--body); max-width: 30ch; margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.social-icon-btn {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border-radius: 12px; border: 1px solid rgba(var(--ink-rgb),.1); background: rgba(var(--glass-rgb),.72);
  color: var(--body); transition: color .25s, border-color .25s, box-shadow .25s, transform .25s;
}
.social-icon-btn:hover { color: var(--accent-text); border-color: #22c1e8; box-shadow: 0 10px 22px rgba(34,193,232,.2); transform: translateY(-2px); }
.footer-col .col-label { font: 500 15px/1 'Schibsted Grotesk', sans-serif; letter-spacing: .22em; color: var(--muted); margin-bottom: 16px; }
.footer-links { display: grid; gap: 11px; }
.footer-links ul,
.footer-links .menu,
.footer-links .menu-footer-menu-container {
  list-style: none !important;
  list-style-type: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: grid;
  gap: 11px;
}
.footer-links ul li,
.footer-links .menu li {
  list-style: none !important;
  list-style-type: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.footer-links a,
.footer-links ul li a,
.footer-links .menu li a,
.footer-links button.footer-link,
a.footer-link {
  font-size: 15px;
  color: var(--body);
  transition: color .25s;
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none !important;
  display: inline-block;
}
.footer-links a:hover,
.footer-links ul li a:hover,
.footer-links .menu li a:hover,
.footer-links button.footer-link:hover,
a.footer-link:hover {
  color: var(--accent-text);
  text-decoration: none !important;
}
.footer-address { font-size: 13px; line-height: 1.7; color: var(--body-soft); }

/* ---------- Footer Contact Links & Address Icons ---------- */
.footer-contact-links {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

.footer-contact-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-size: 15px !important;
  color: var(--body) !important;
  transition: color .25s ease, transform .25s ease !important;
  text-decoration: none !important;
}

.footer-contact-link i {
  font-size: 14px !important;
  color: var(--accent-text) !important;
  width: 16px !important;
  height: 16px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 16px !important;
  transition: color .25s ease, transform .25s ease !important;
}

.footer-contact-link:hover {
  color: var(--ink) !important;
}

.footer-contact-link:hover i {
  color: var(--accent-text) !important;
  transform: translateX(3px) !important;
}

.footer-address {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
  color: var(--body-soft) !important;
  margin-top: 14px !important;
}

.footer-address i {
  font-size: 14px !important;
  color: var(--accent-text) !important;
  width: 16px !important;
  height: 16px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 16px !important;
}
.footer-bottom { background: var(--band-2); color: var(--band-2-text); padding: 20px 32px; }
.footer-bottom-inner { max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 12px; }

/* ---------- Utility icon-chip color variants ---------- */
.chip-blue { background: linear-gradient(135deg,#22c1e8,#0a86d6); box-shadow: 0 10px 22px rgba(10,134,214,.32); }
.chip-purple { background: linear-gradient(135deg,#b586e0,#7b4bb8); box-shadow: 0 10px 22px rgba(123,75,184,.3); }
.chip-gold { background: linear-gradient(135deg,#ffc861,#f5a623); box-shadow: 0 10px 22px rgba(245,166,35,.32); }
.chip-green { background: linear-gradient(135deg,#5ec9a8,#1d9e7c); }

/* ---------- Responsive tweaks ---------- */
@media (max-width: 640px) {
  .container, .header-inner { padding-left: 18px !important; padding-right: 18px !important; }
}


/* ---------- FontAwesome Icon Helpers ---------- */
.pillar-icon i { font-size: 22px; color: #ffffff; }
.icon-chip i { font-size: 20px; color: #ffffff; }
.office-badge i { font-size: 13px; color: var(--accent-text); }
.office-row i { font-size: 18px; color: var(--accent-text); width: 22px; margin-top: 2px; text-align: center; flex: 0 0 auto; }
.verify-cta i { font-size: 15px; margin-right: 6px; }
.theme-toggle i, .theme-toggle-lg i { font-size: 16px; }
.faq-toggle-icon { font-size: 14px; transition: transform .3s ease; }
.faq-question.is-open .faq-toggle-icon { transform: rotate(180deg); }

/* ---------- Custom Form Shortcode (Forminator / CF7 / WPForms) ---------- */
.custom-form-shortcode {
  width: 100%;
}
.custom-form-shortcode form,
.custom-form-shortcode .forminator-custom-form {
  display: grid !important;
  gap: 18px !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
}
.custom-form-shortcode .forminator-row {
  margin-bottom: 0 !important;
  padding: 0 !important;
}
.custom-form-shortcode .forminator-col {
  padding: 0 !important;
  margin-bottom: 0 !important;
}
.custom-form-shortcode .forminator-field,
.custom-form-shortcode .form-group,
.custom-form-shortcode .wpcf7-form-control-wrap {
  margin-bottom: 0 !important;
  display: grid !important;
  gap: 8px !important;
}
.custom-form-shortcode label,
.custom-form-shortcode .forminator-label {
  display: block !important;
  font: 500 11px/1 'Schibsted Grotesk', sans-serif !important;
  letter-spacing: .14em !important;
  color: var(--muted, #7e879c) !important;
  text-transform: uppercase !important;
  margin-bottom: 4px !important;
}
.custom-form-shortcode .forminator-required,
.custom-form-shortcode label span.required {
  color: #22c1e8 !important;
  margin-left: 3px !important;
}
.custom-form-shortcode input[type="text"],
.custom-form-shortcode input[type="email"],
.custom-form-shortcode input[type="number"],
.custom-form-shortcode input[type="tel"],
.custom-form-shortcode input[type="url"],
.custom-form-shortcode textarea,
.custom-form-shortcode .forminator-input,
.custom-form-shortcode .forminator-textarea {
  width: 100% !important;
  background: var(--panel-2, #0c1222) !important;
  border: 1px solid var(--line, rgba(255,255,255,0.12)) !important;
  border-radius: 14px !important;
  color: var(--ink, #ffffff) !important;
  font: 400 15px/1 'Schibsted Grotesk', sans-serif !important;
  padding: 16px 18px !important;
  box-sizing: border-box !important;
  transition: border-color .25s, box-shadow .25s !important;
}
.custom-form-shortcode textarea,
.custom-form-shortcode .forminator-textarea {
  min-height: 140px !important;
  line-height: 1.6 !important;
  resize: vertical !important;
}
.custom-form-shortcode input::placeholder,
.custom-form-shortcode textarea::placeholder,
.custom-form-shortcode .forminator-input::placeholder,
.custom-form-shortcode .forminator-textarea::placeholder {
  color: rgba(255,255,255,0.35) !important;
  opacity: 1 !important;
}
.custom-form-shortcode input:focus,
.custom-form-shortcode textarea:focus,
.custom-form-shortcode .forminator-input:focus,
.custom-form-shortcode .forminator-textarea:focus {
  outline: none !important;
  border-color: #22c1e8 !important;
  box-shadow: 0 0 0 4px rgba(34,193,232,.12) !important;
}
.custom-form-shortcode button[type="submit"],
.custom-form-shortcode input[type="submit"],
.custom-form-shortcode .forminator-button-submit,
.custom-form-shortcode .forminator-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  justify-self: start !important;
  padding: 16px 36px !important;
  font: 500 13px/1 'Schibsted Grotesk', sans-serif !important;
  letter-spacing: .1em !important;
  text-transform: uppercase !important;
  border-radius: 999px !important;
  border: none !important;
  background: linear-gradient(120deg,#22c1e8,#0a86d6) !important;
  color: #ffffff !important;
  box-shadow: 0 12px 28px rgba(10,134,214,.28) !important;
  cursor: pointer !important;
  transition: all .25s ease !important;
  margin-top: 10px !important;
}
.custom-form-shortcode button[type="submit"]:hover,
.custom-form-shortcode input[type="submit"]:hover,
.custom-form-shortcode .forminator-button-submit:hover,
.custom-form-shortcode .forminator-button:hover {
  background: linear-gradient(120deg,#2acbf2,#1094e6) !important;
  color: #ffffff !important;
  box-shadow: 0 18px 38px rgba(10,134,214,.4) !important;
  transform: translateY(-2px) !important;
}
.custom-form-shortcode .forminator-error-message,
.custom-form-shortcode .wpcf7-not-valid-tip {
  background: rgba(239, 68, 68, 0.12) !important;
  border: 1px solid rgba(239, 68, 68, 0.25) !important;
  color: #f87171 !important;
  border-radius: 8px !important;
  padding: 8px 12px !important;
  font-size: 12px !important;
  margin-top: 6px !important;
}

/* Light Mode Overrides for Luxury Cards */
[data-theme="light"] .luxury-card,
html[data-theme="light"] .luxury-card,
body[data-theme="light"] .luxury-card,
.light-mode .luxury-card,
.light-theme .luxury-card {
  background: #ffffff !important;
  border: 1px solid #e2ecf7 !important;
  box-shadow: 0 20px 50px rgba(16, 26, 51, 0.08) !important;
}

[data-theme="light"] .luxury-card:hover,
html[data-theme="light"] .luxury-card:hover,
body[data-theme="light"] .luxury-card:hover,
.light-mode .luxury-card:hover,
.light-theme .luxury-card:hover {
  border-color: #0aa7d6 !important;
  box-shadow: 0 28px 70px rgba(10, 167, 214, 0.15) !important;
}

[data-theme="light"] .luxury-section-title h2,
html[data-theme="light"] .luxury-section-title h2,
body[data-theme="light"] .luxury-section-title h2,
.light-mode .luxury-section-title h2,
.light-theme .luxury-section-title h2,
[data-theme="light"] .luxury-card h3,
html[data-theme="light"] .luxury-card h3,
body[data-theme="light"] .luxury-card h3,
.light-mode .luxury-card h3,
.light-theme .luxury-card h3 {
  color: #0d1b3e !important;
}

[data-theme="light"] .luxury-card p.lead,
html[data-theme="light"] .luxury-card p.lead,
body[data-theme="light"] .luxury-card p.lead,
.light-mode .luxury-card p.lead,
.light-theme .luxury-card p.lead {
  color: #31405f !important;
}

[data-theme="light"] .luxury-card p.body-text,
html[data-theme="light"] .luxury-card p.body-text,
body[data-theme="light"] .luxury-card p.body-text,
.light-mode .luxury-card p.body-text,
.light-theme .luxury-card p.body-text {
  color: #4d5d7d !important;
}

[data-theme="light"] .luxury-pill-item,
html[data-theme="light"] .luxury-pill-item,
body[data-theme="light"] .luxury-pill-item,
.light-mode .luxury-pill-item,
.light-theme .luxury-pill-item {
  background: #f6fafe !important;
  border-color: #e2ecf7 !important;
}

[data-theme="light"] .luxury-pill-item span,
html[data-theme="light"] .luxury-pill-item span,
body[data-theme="light"] .luxury-pill-item span,
.light-mode .luxury-pill-item span,
.light-theme .luxury-pill-item span {
  color: #31405f !important;
}

[data-theme="light"] .luxury-pill-item i,
[data-theme="light"] .luxury-pill-item svg,
html[data-theme="light"] .luxury-pill-item i,
html[data-theme="light"] .luxury-pill-item svg {
  color: #0aa7d6 !important;
  fill: #0aa7d6 !important;
}

/* ============================================================
   Smart 404 Page Styles
   ============================================================ */
.smart-404-page {
  padding: 140px 0 0px;
  position: relative;
  z-index: 1;
}

.gate-card > img {
    width: auto;
    height: 150px;
    margin-bottom: 30px;
}

.smart-404-wrapper {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 60px 40px;
  border-radius: 28px;
  background: rgba(var(--glass-rgb), 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  text-align: center;
  overflow: hidden;
  transition: all 0.35s ease;
}

.smart-404-bg-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 550px;
  height: 350px;
  background: radial-gradient(ellipse at center, rgba(34, 193, 232, 0.22), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.smart-404-hero {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.smart-404-mark-wrap {
  display: block;
  margin: 0 auto;
  padding: 0;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.smart-404-mark-img {
  height: 60px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  filter: none !important;
  -webkit-filter: none !important;
}

.smart-404-code-display {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: 110px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}

.smart-404-num {
  background: linear-gradient(135deg, #eef2f9 20%, #22c1e8 80%, #0a86d6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 10px 30px rgba(34, 193, 232, 0.3);
}

.smart-404-num-zero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(34, 193, 232, 0.1);
  border: 2px dashed rgba(34, 193, 232, 0.4);
  color: #22c1e8;
  font-size: 42px;
  box-shadow: inset 0 0 20px rgba(34, 193, 232, 0.2), 0 0 30px rgba(34, 193, 232, 0.2);
  animation: lbfloat 4s ease-in-out infinite;
}

.smart-404-content {
  position: relative;
  z-index: 1;
  margin-bottom: 36px;
}

.smart-404-title {
  font-size: 38px;
  font-weight: 700;
  margin: 12px 0 14px;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.smart-404-subtitle {
  font-size: 16px;
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto;
  color: var(--body);
}

.smart-404-search-container {
  position: relative;
  z-index: 1;
  max-width: 580px;
  margin: 0 auto 44px;
}

.smart-404-search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 6px 6px 6px 22px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.smart-404-search-input-wrap:focus-within {
  border-color: #22c1e8;
  box-shadow: 0 14px 40px rgba(34, 193, 232, 0.25);
  transform: translateY(-2px);
}

.smart-404-search-icon {
  color: var(--muted);
  font-size: 16px;
  margin-right: 12px;
}

.smart-404-search-input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  color: var(--ink);
  font-size: 15px;
  font-family: inherit;
}

.smart-404-search-input::placeholder {
  color: var(--muted);
}

.smart-404-search-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  background: linear-gradient(120deg, #22c1e8, #0a86d6);
  border: none;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(10, 134, 214, 0.35);
  transition: all 0.25s ease;
}

.smart-404-search-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(10, 134, 214, 0.5);
}

.smart-404-quicklinks-section {
  position: relative;
  z-index: 1;
  margin-bottom: 44px;
  padding-top: 24px;
  border-top: 1px dashed var(--line);
}

.smart-404-quicklinks-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--muted);
  margin-bottom: 20px;
}

.smart-404-pills-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.smart-404-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--panel-2);
  border: 1px solid var(--line);
  color: var(--body-strong);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.25s ease;
}

.smart-404-pill i {
  color: #22c1e8;
  font-size: 14px;
  transition: transform 0.25s ease;
}

.smart-404-pill:hover {
  border-color: #22c1e8;
  background: rgba(34, 193, 232, 0.12);
  color: var(--ink);
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(34, 193, 232, 0.18);
}

.smart-404-pill:hover i {
  transform: scale(1.15);
}

.smart-404-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

/* Light Mode Overrides for 404 Page */
[data-theme="light"] .smart-404-wrapper,
html[data-theme="light"] .smart-404-wrapper,
body[data-theme="light"] .smart-404-wrapper {
  background: rgba(255, 255, 255, 0.92) !important;
  border-color: #e2ecf7 !important;
  box-shadow: 0 30px 80px rgba(16, 26, 51, 0.1) !important;
}

[data-theme="light"] .smart-404-mark-wrap {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

[data-theme="light"] .smart-404-num {
  background: linear-gradient(135deg, #0d1b3e 20%, #0aa7d6 80%, #0277bd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

[data-theme="light"] .smart-404-num-zero {
  background: rgba(10, 167, 214, 0.1) !important;
  border-color: rgba(10, 167, 214, 0.4) !important;
  color: #0aa7d6 !important;
}

[data-theme="light"] .smart-404-search-input-wrap {
  background: #ffffff !important;
  border-color: #d3dfef !important;
  box-shadow: 0 8px 24px rgba(16, 26, 51, 0.06) !important;
}

[data-theme="light"] .smart-404-pill {
  background: #f6fafe !important;
  border-color: #e2ecf7 !important;
  color: #31405f !important;
}

[data-theme="light"] .smart-404-pill:hover {
  background: rgba(10, 167, 214, 0.08) !important;
  border-color: #0aa7d6 !important;
  color: #0d1b3e !important;
}

@media (max-width: 768px) {
  .smart-404-page {
    padding: 100px 0 60px;
  }
  .smart-404-wrapper {
    padding: 40px 20px;
    border-radius: 20px;
  }
  .smart-404-code-display {
    font-size: 72px;
  }
  .smart-404-num-zero {
    width: 64px;
    height: 64px;
    font-size: 28px;
  }
  .smart-404-title {
    font-size: 28px;
  }
  .smart-404-subtitle {
    font-size: 14px;
  }
  .smart-404-search-input-wrap {
    flex-direction: column;
    padding: 8px;
    border-radius: 18px;
  }
  .smart-404-search-icon {
    display: none;
  }
  .smart-404-search-input {
    width: 100%;
    padding: 10px;
    text-align: center;
  }
  .smart-404-search-submit {
    width: 100%;
    justify-content: center;
  }
  .smart-404-actions {
    flex-direction: column;
    width: 100%;
  }
  .smart-404-actions .btn {
    width: 100%;
  }
}


.construction-mark img {
    width: auto;
    height: 200px !important;
    margin: auto;
}
