:root {
  --bg: #050505;
  --text: #ffffff;
  --muted: #888888;
  --silk: #f7f7f5;
  --gold: #c5a028;
  --gold-light: #f9f1d8;
  --accent: var(--gold);
  --glass: rgba(18, 18, 18, 0.6);
  --glass-border: rgba(255, 255, 255, 0.08);
  --radius: 12px;
  --radius-lg: 24px;
  --space: 24px;
  --space-lg: 64px;
  --maxw: 1200px;
  --pane-pad-block: 4rem;
  --pane-pad-inline: 4rem;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

@media screen and (max-width: 850px) {
  :root {
    --space: 16px;
    --pane-pad-block: 2.5rem;
    --pane-pad-inline: 1.25rem;
  }
}

html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--silk);
}

/* Global Focus Ring (WCAG AA) */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

[x-cloak] {
  display: none !important;
}

/* Background image layer with subtle blur; glass adds more blur on top */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: image-set(url('/bg.avif') type('image/avif'),
      url('/bg.webp') type('image/webp'),
      url('/bg.jpg') type('image/jpeg')) center / cover no-repeat;
  filter: blur(0px) saturate(140%) brightness(0.9);
  z-index: -1;
}

@media (max-width: 850px) {
  body::before {
    filter: blur(0px) saturate(152%);
  }
}

#app-root {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  padding: 0 var(--space);
  margin: var(--space) auto;
}

/* Frosted glass utility */
.glass {
  position: relative;
  background: transparent;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease;
  isolation: isolate;
  z-index: 0;
}

.glass::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--glass);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  border-radius: inherit;
  z-index: -1;
  pointer-events: none;
}

.gold-glass::before {
  background: rgba(197, 160, 40, 0.12) !important;
}

.gold-glass {
  border-color: rgba(197, 160, 40, 0.25) !important;
}

.gold-glass:hover::before {
  background: rgba(197, 160, 40, 0.18) !important;
}

.gold-glass:hover {
  border-color: rgba(197, 160, 40, 0.4) !important;
}

.glass:hover {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.pane {
  padding: var(--pane-pad-block) var(--pane-pad-inline);
  border-radius: var(--radius-lg);
  display: grid;
  gap: var(--space);
}

.content {
  padding-bottom: var(--space-lg);
}

.no-padding {
  padding: 0 !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

#content:focus {
  outline: none;
}

.contain-content {
  contain: content;
}

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

#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  margin: 0;
  padding: 1.5rem 0;
}

.nav-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  border-radius: 4rem;
}

@media screen and (max-width: 600px) {
  .nav-shell {
    padding: 0.75rem 1.25rem;
  }
}

.brand {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
  position: relative;
}

.nav-link {
  position: relative;
  text-decoration: none;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 6px 0;
  transition: color .2s ease;
  letter-spacing: 0.14em;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
  color: #fff;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-link.active {
  color: var(--gold);
}

.nav-link:focus-visible,
.button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 8px;
}

.burger {
  display: none;
  background: none;
  color: var(--text);
  border: 1px solid var(--glass-border);
  padding: 8px 10px;
  border-radius: 10px;
}

/* Global Overflow Constraints */
html,
body,
#app-root {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* Footer */
#site-footer {
  margin-top: auto;
  padding: 10px 0;
  width: 100%;
}

.footer-shell {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  padding: var(--pane-pad-block) var(--pane-pad-inline);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.footer-version {
  color: var(--muted);
  font-size: 0.75rem;
  margin-top: 8px;
  opacity: 0.6;
}

.footer-copyright {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.4;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  padding: 0 1rem;
  white-space: normal;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-link:hover {
  color: #fff;
}

.footer-dot {
  color: var(--muted);
  font-size: 0.9rem;
}

.social {
  display: flex;
  gap: 12px;
}

.social a {
  display: inline-flex;
  width: 24px;
  height: 24px;
  opacity: 0.9;
}

.social a:hover {
  opacity: 1;
}

.social img {
  width: 100%;
  height: 100%;
  filter: invert(85%);
}

/* Cards and lists */
.grid {
  display: grid;
  gap: var(--space);
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 720px) {
  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.card-link {
  text-decoration: none !important;
  display: flex !important;
  flex-direction: column;
  height: 100%;
}

.card:focus-within {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: var(--radius);
}

.card .thumb-box {
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.card .thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.card:hover .thumb {
  transform: scale(1.08);
}

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.split-1-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: stretch;
}

@media (min-width: 880px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }

  .split-1-3 {
    grid-template-columns: 1fr 3fr;
  }
}

.card h2,
.card h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  line-height: 1.2;
}

.flagship-card .card-link {
  padding: 4rem;
  gap: 2rem;
}

.card .card-body {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.flagship-card .card-body {
  margin-bottom: 0.5rem;
}

.bullet-list {
  list-style-type: none;
  padding-left: 0;
  margin-top: 1rem;
}

.bullet-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
  color: var(--muted);
  /* Retained from original .card .bullet-list li */
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 5px;
  height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
  box-shadow: 0 0 8px var(--gold);
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.card a {
  text-decoration: none !important;
}

/* Headings */
h1,
h2,
h3,
h4,
.section-title {
  font-family: var(--font-heading);
  color: var(--text);
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}

.overline {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
}

.glass::after {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 40%, transparent 60%, rgba(255, 255, 255, 0.05));
  border-radius: inherit;
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.glass:hover::after {
  opacity: 1;
}

.hero {
  display: grid;
  place-items: center;
  min-height: 12vh;
  text-align: center;
  gap: 2px;
}

.hero p {
  color: var(--muted);
  margin: 0;
}

.logo {
  width: 160px;
  height: auto;
  display: block;
  margin: 0 auto 6px;
  opacity: 0.95;
}

.brand-logo {
  height: 28px;
  width: auto;
  display: block;
  opacity: 0.95;
}

.hero {
  display: grid;
  place-items: center;
  text-align: center;
  gap: 12px;
  padding: var(--space-lg);
}

.hero-copy {
  margin: 12px auto 0;
  max-width: 60ch;
  text-align: center;
}

.hero-copy p {
  margin: 0;
}

.lead {
  font-size: 1.35rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
  text-wrap: balance;
}

.hero-copy .muted {
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 50ch;
  margin-inline: auto;
}

.hero-logo {
  width: clamp(100px, 40vw, 150px);
  height: auto;
  display: block;
  margin-inline: auto;
  opacity: 0.98;
  filter: drop-shadow(0px 8px 24px rgba(0, 0, 0, 0.55));
}

.hero-pane {
  text-align: center;
  justify-items: center;
  padding: var(--pane-pad-block) var(--pane-pad-inline);
  background: radial-gradient(circle at center, rgba(197, 160, 40, 0.05) 0%, transparent 70%);
}

.hero-pane .btns {
  justify-content: center;
}

.btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.button {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  padding: 1rem 2rem;
  border-radius: 4px;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  text-decoration: none;
  cursor: pointer;
}

@media screen and (max-width: 600px) {
  .btns {
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }

  .button {
    width: 100%;
    padding: 1rem 1.5rem;
  }
}

.button-primary {
  background: var(--gold);
  color: #000;
  border: 1px solid var(--gold);
}

.button-primary:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(197, 160, 40, 0.2);
}

.button-outline {
  background: transparent;
  border: 1px solid var(--glass-border);
  color: #fff;
}

.button-outline:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
  transform: translateY(-2px);
}

.button[aria-disabled="true"] {
  opacity: 0.6;
  pointer-events: none;
}

.store-btn img {
  height: 48px;
  width: auto;
  display: inline-block;
}

/* Utilities */
ul,
ol {
  margin: 0;
  padding-left: 1.25rem;
}

.hidden {
  display: none !important;
}

.stack {
  display: grid;
  gap: var(--space);
}

section.stack,
article.stack {
  gap: var(--space-lg);
}

.inline {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.muted {
  color: var(--muted);
}

.small {
  font-size: 0.8rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 1px, 1px);
  border: 0;
}

/* FAQ Native Accordion */
.faq-container {
  width: 100%;
}

.faq-item {
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.faq-item summary {
  padding: 1.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  list-style: none;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item .faq-content {
  padding: 0 1.5rem 1.5rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.faq-item .faq-content p {
  margin: 0;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space);
  margin: var(--space-lg) 0 var(--space);
}

.section-heading h2 {
  margin: 0;
}

.section-heading .button {
  flex-shrink: 0;
}

.overline {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
}

.price-grid {
  display: grid;
  gap: 8px;
  margin: 8px 0 16px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: rgba(227, 174, 88, 0.08);
  border: 1px solid rgba(227, 174, 88, 0.2);
  padding: 8px 12px;
  border-radius: 10px;
}

.detail-hero {
  align-items: center;
  gap: var(--space);
}

.detail-copy {
  gap: 12px;
}

.detail-media {
  height: 100%;
}

.detail-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.no-padding .detail-media img {
  border-radius: 0;
  height: 100%;
  object-fit: cover;
}

.detail-body {
  align-items: flex-start;
  gap: var(--space);
}

.detail-body ul,
.meta-list ul {
  margin: 0;
  padding-left: 20px;
}

.detail-body li,
.meta-list li {
  margin-bottom: 6px;
}

.meta-list h2 {
  margin-bottom: 0.75rem;
}

.prose {
  gap: var(--space);
}

.prose h2,
.prose h3 {
  margin-bottom: 0.75rem;
}

.prose ul {
  margin: 0;
  padding-left: 20px;
}

/* Mobile nav */
@media (max-width: 850px) {
  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    position: fixed;
    right: var(--space);
    left: var(--space);
    top: 72px;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    background: transparent;
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.48);
    isolation: isolate;
    z-index: 160;
  }

  .nav-links.open::before {
    content: "";
    position: absolute;
    inset: -1px;
    background: rgba(12, 16, 28, 0.48);
    backdrop-filter: blur(28px) saturate(190%);
    -webkit-backdrop-filter: blur(28px) saturate(190%);
    border-radius: inherit;
    z-index: -1;
    pointer-events: none;
  }

  .burger {
    display: inline-flex;
  }

  .section-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-heading .button {
    width: 100%;
    justify-content: center;
  }

  .detail-hero {
    grid-template-columns: 1fr;
  }
}

.contact-body {
  display: grid;
  gap: var(--space);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.contact-body section {
  display: grid;
  gap: 8px;
}

.contact-body ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.contact-body a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(227, 174, 88, 0.4);
}

.contact-socials {
  display: grid;
  gap: 8px;
}

.contact-socials .social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-socials .social-link {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(227, 174, 88, 0.35);
  background: rgba(227, 174, 88, 0.08);
  color: inherit;
  text-decoration: none;
  font-size: 0.9rem;
}

.contact-socials .social-link:hover {
  filter: brightness(1.1);
}

.table-scroll {
  overflow-x: auto;
}

.matrix {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}

.matrix th,
.matrix td {
  padding: 1.5rem;
  border-bottom: 1px solid var(--glass-border);
  font-size: 0.95rem;
}

.matrix th[scope="row"] {
  text-align: left;
  font-size: 0.85rem;
}

.matrix td {
  text-align: center;
}

.matrix thead th {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.02);
}

.matrix tbody tr:hover {
  background: rgba(255, 255, 255, 0.01);
}

.matrix .check {
  color: var(--gold);
  font-size: 1.25rem;
}

.matrix .na {
  color: rgba(255, 255, 255, 0.15);
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(197, 160, 40, 0.12);
  border: 1px solid rgba(197, 160, 40, 0.25);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: normal;
  line-height: 1.2;
}

.feature-grid,
.policy-grid {
  display: grid;
  gap: var(--space);
}

@media (min-width: 860px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .policy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Boutique Visuals */
.feature-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.feature-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.02);
}

.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  min-width: unset;
  border-radius: 0;
  background: transparent;
  color: var(--gold);
  font-size: 2.25rem;
}

/* Feature Grid for Balanced 2x2 */
.feature-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.feature-card-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.feature-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  color: var(--text-bright);
}

.grid-visual {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-top: 3rem;
}

h3.card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

p.card-body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
}

.stat-grid {
  display: grid;
  gap: var(--space);
}

@media (min-width: 720px) {
  .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.stat-card {
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(148, 176, 224, 0.18);
  background: rgba(12, 16, 28, 0.35);
  box-shadow: inset 0 0 0 1px rgba(103, 242, 207, 0.08);
}

.stat-card h3 {
  margin: 0 0 6px;
  font-size: 1.2rem;
}

.stat-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
  overflow: visible;
}

.card .card-header {
  position: sticky;
  top: 0;
  z-index: 10;
  height: 280px;
  border-bottom: 1px solid var(--glass-border);
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(18, 18, 18, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.card:hover .card-header {
  transform: scale(1.05);
}

.card .card-content {
  padding: 2.5rem 3rem;
  flex: 1;
}

.card .card-footer {
  padding: 1rem 3rem 3.5rem;
  margin-top: auto;
}

@media screen and (max-width: 600px) {
  .card .card-content {
    padding: 1.5rem;
  }

  .card .card-footer {
    padding: 0 1.5rem 2rem;
  }
}

.track-icon {
  margin: 0;
  width: 96px;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.5));
}

.track-hero {
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
}

.span-two {
  grid-column: 1 / -1;
}

@media (min-width: 860px) {
  .span-two {
    grid-column: span 2;
  }
}

/* Booking Calendar Responsive Heights */
.booking-calendar {
  height: 900px;
}

@media (max-width: 1024px) {
  .booking-calendar {
    height: 820px;
  }
}

@media (max-width: 700px) {
  .booking-calendar {
    height: 1250px;
  }
}

/* Mobile Comparison Table Card View
   -------------------------------------------------
   On screens smaller than 800px, the horizontal table 
   transforms into vertical "Feature Cards". 
   - Feature name (th scope=row) becomes the Card Title.
   - Plans (td data-label) become labeled rows within the card.
*/
@media screen and (max-width: 800px) {

  .matrix,
  .matrix tbody,
  .matrix th,
  .matrix td,
  .matrix tr {
    display: block !important;
  }

  .matrix {
    border: 0 !important;
    min-width: 0 !important;
  }

  .matrix thead {
    display: none !important;
  }

  .matrix th[scope="row"] {
    width: 100% !important;
    text-align: left !important;
    font-size: 0.95rem !important;
    color: var(--gold) !important;
    margin-bottom: 0.75rem !important;
    padding: 1.5rem 0 0.5rem 0 !important;
    border-bottom: 1px solid var(--glass-border) !important;
  }

  .matrix tr {
    margin-bottom: 1.5rem !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: var(--radius) !important;
    padding: 0 1.5rem 1.5rem !important;
  }

  .matrix td {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    text-align: right !important;
    padding: 0.75rem 0 !important;
    position: relative !important;
  }

  .matrix td:last-child {
    border-bottom: 0 !important;
  }

  .matrix td::before {
    content: attr(data-label);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.65rem;
    letter-spacing: 0.05em;
    color: var(--muted);
    opacity: 0.8;
  }
}

/* Pricing Grid Highlight */
.highlight-tier {
  border: 1px solid var(--gold, #d4af37) !important;
  position: relative;
}
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold, #d4af37);
  color: #000;
  padding: 0.3rem 1.2rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  z-index: 11;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  pointer-events: none;
}
@media (min-width: 992px) {
  .highlight-tier {
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
  }
}

/* Partner Program 3-Column Spanning */
.span-three {
  grid-column: 1 / -1;
  margin-top: 4rem;
}

.three-col-list {
  display: grid;
  gap: 1rem 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .three-col-list {
    grid-template-columns: repeat(3, 1fr);
  }
}