:root {
  color-scheme: dark;
  --bg: #08111f;
  --bg-soft: rgba(13, 24, 42, 0.82);
  --panel: rgba(15, 28, 49, 0.9);
  --panel-strong: rgba(18, 35, 61, 0.98);
  --line: rgba(170, 203, 255, 0.16);
  --text: #edf4ff;
  --muted: #a8b8d6;
  --brand: #6ee7d8;
  --brand-2: #87a7ff;
  --accent: #ffcb6b;
  --accent-2: #ff8f70;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shell: min(1120px, calc(100vw - 2rem));
}

html[data-theme="light"] {
  color-scheme: light;
  --bg: #f4f7fb;
  --bg-soft: rgba(255, 255, 255, 0.82);
  --panel: rgba(255, 255, 255, 0.88);
  --panel-strong: rgba(255, 255, 255, 0.96);
  --line: rgba(16, 24, 40, 0.08);
  --text: #101827;
  --muted: #526079;
  --brand: #087d70;
  --brand-2: #4b74f2;
  --accent: #ffcb6b;
  --accent-2: #ff8f70;
  --shadow: 0 24px 70px rgba(16, 24, 40, 0.12);
}

/* --- Premium Header Container --- */
.premium-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.premium-header h3 {
  margin: 0;
}

.badge-standout {
  background: var(--accent-2);
  color: #04101a;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* --- Mobile Specific Refinements --- */
@media (max-width: 720px) {
  /* Forces the header title and badge to stay aligned on a single row */
  .premium-header {
    flex-wrap: nowrap; 
    justify-content: space-between;
    align-items: center;
  }

  .premium-header h3 {
    font-size: 1.2rem; /* Tightens the font sizing so it never forces a wrap */
  }

  .badge-standout {
    font-size: 0.65rem; /* Scales the badge down appropriately for smaller mobile viewports */
    padding: 0.2rem 0.55rem;
  }

  .shot-grid {
    display: flex !important;           /* Switch from grid to a single horizontal row */
    overflow-x: auto;                  /* Enable native horizontal swiping/scrolling */
    scroll-snap-type: x mandatory;     /* Force smooth snapping onto cards when swiping */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; /* Butter-smooth scrolling performance on iOS */
    gap: 1rem;
    padding: 0.5rem 0.25rem 1.5rem;   /* Bottom padding keeps the custom card shadow safe */
    
    /* Hide default browser scrollbars while keeping swipe functionality active */
    scrollbar-width: none;             /* Firefox */
  }

  .shot-grid::-webkit-scrollbar {
    display: none;                     /* Chrome, Safari, and Opera */
  }

  .shot-card {
    flex: 0 0 82%;                     /* Show 82% of the card, revealing a peek of the next one */
    scroll-snap-align: center;         /* Snaps perfectly to the center of the mobile screen */
    margin: 0;
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0 0 1rem;
    
    padding: 0.25rem 0.75rem; 
    
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
  }

  /* 1. Force download badges to sit neatly side-by-side */
  .store-badge-row {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    margin-bottom: 0.75rem;
  }

  .store-badge {
    height: 48px; /* Slightly scale down badge height to guarantee they fit side-by-side */
    width: auto;
  }

  /* 2. Style the actions block to expand gracefully */
  .hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin: 1.5rem 0;
  }

  .hero-actions .button-secondary {
    width: 100%;
    max-width: 320px; /* Restricts button size on wide mobile screens */
    text-align: center;
  }

  /* 3. Reformat the highlights list so it doesn't leave floating single pills */
  .hero-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    padding: 0;
    list-style: none;
  }

  .hero-points li {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
    white-space: nowrap;
  }
}

/* Guarantees clean breathing room when users jump down the page via anchor links */
.section[id] {
  scroll-margin-top: 110px !important;
}

@media (max-width: 720px) {
  .section[id] {
    scroll-margin-top: 10px !important; /* Calibrates perfectly for the tighter 60px mobile navbar */
  }
  #top
  {
    scroll-margin-top: 72px !important;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html[data-theme="light"] body {
  background:
    radial-gradient(circle at top left, rgba(8, 125, 112, 0.12), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(75, 116, 242, 0.12), transparent 25%),
    radial-gradient(circle at 65% 85%, rgba(255, 183, 77, 0.12), transparent 24%),
    linear-gradient(180deg, #f7f9fc 0%, #eef2f8 50%, #e9edf5 100%);
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(110, 231, 216, 0.14), transparent 30%),
    radial-gradient(circle at 90% 15%, rgba(135, 167, 255, 0.16), transparent 26%),
    radial-gradient(circle at 65% 85%, rgba(255, 143, 112, 0.13), transparent 22%),
    linear-gradient(180deg, #07101d 0%, #091423 45%, #050a12 100%);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100; /* Increased layer priority from 20 to 100 */
  backdrop-filter: blur(20px);
  background: rgba(5, 10, 18, 0.58);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Give the main scroll container its own independent stack layout context */
main {
  position: relative;
  z-index: 1;
}

/* Keep the fullscreen media viewer isolated on the absolute top visual tier */
.fullscreen-viewer {
  z-index: 200;
}

.header-bar {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(110, 231, 216, 0.18);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: grid;
}

.brand-copy strong,
h1,
h2,
h3,
.eyebrow {
  font-family: "Space Grotesk", system-ui, sans-serif;
}

.brand-copy strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.92rem;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.header-nav a {
  color: var(--muted);
  font-weight: 600;
}

.theme-toggle {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font: inherit;
  font-weight: 600;
  display: inline-grid;
  place-items: center;
}

html[data-theme="light"] .theme-toggle {
  border-color: rgba(16, 24, 40, 0.1);
  background: rgba(255, 255, 255, 0.82);
}



/* --- THEME TOGGLE STYLES --- */

.theme-toggle {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  
  /* Layout context for absolute positioning inside */
  position: relative; 
  overflow: hidden;
  
  /* Smooth background color crossfade */
  transition: 
    background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Subtle bounce effect when tapping the button */
.theme-toggle:active {
  transform: scale(0.92);
}

html[data-theme="light"] .theme-toggle {
  border-color: rgba(16, 24, 40, 0.1);
  background: rgba(255, 255, 255, 0.82);
}

/* Base icon transitions */
.theme-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  
  /* Standard absolute alignment to middle */
  position: absolute;
  top: calc(50% - 10px);
  left: calc(50% - 10px);
  
  /* Fluid timing curve for rotation, scale, and opacity */
  transition: 
    transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), 
    opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- LIGHT & DARK MOVEMENT STATES --- */

/* 1. Default (Dark Theme active): Show Moon, Hide Sun */
.theme-icon-moon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.theme-icon-sun {
  opacity: 0;
  /* Sun sits hidden below, scaled down and spun backward */
  transform: rotate(-90deg) scale(0.3);
}

/* 2. Light Theme active: Hide Moon (spin away), Show Sun (pop up & unwind) */
html[data-theme="light"] .theme-icon-moon {
  opacity: 0;
  transform: rotate(90deg) scale(0.3);
}

html[data-theme="light"] .theme-icon-sun {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.nav-cta {
  background: rgba(110, 231, 216, 0.11);
  color: var(--text);
  border-color: rgba(110, 231, 216, 0.16);
}

html[data-theme="light"] .nav-cta {
  background: rgba(8, 125, 112, 0.08);
  border-color: rgba(8, 125, 112, 0.14);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #04101a;
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(111, 193, 255, 0.22);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.1);
}

.store-badge-row {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.store-badge-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.header-store-text {
  display: none;
}

.store-badge {
  display: block;
  height: 56px;
  width: auto;
  max-width: none;
  flex: 0 0 auto;
  object-fit: contain;
  object-position: center;
}

.store-badge-header {
  height: 42px;
}

html[data-theme="light"] .button-secondary {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(16, 24, 40, 0.1);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2rem;
  align-items: center;
  padding: 4.5rem 0 2rem;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  width: fit-content;
  background: rgba(255, 255, 255, 0.05);
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
}

h1 {
  margin: 0;
  font-size: clamp(2.55rem, 5vw, 4.65rem);
  line-height: 0.84;
  letter-spacing: -0.06em;
  max-width: 13.5ch;
}

@media (min-width: 961px) {
  h1 {
    max-width: 22ch;
  }
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

h3 {
  margin: 0 0 0.55rem;
  font-size: 1.15rem;
  line-height: 1.1;
}

.lede,
.section-heading p,
.quote-panel p,
.site-footer {
  color: var(--muted);
}

.lede {
  margin: 1.3rem 0 0;
  max-width: 62ch;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.8rem 0 1.4rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li,
.trust-pill {
  padding: 0.58rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--text);
  font-weight: 600;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-carousel {
  position: relative;
  width: min(100%, 680px);
}

.carousel-frame {
  position: relative;
  padding: 1rem;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

html[data-theme="light"] .carousel-frame,
html[data-theme="light"] .shot-card,
html[data-theme="light"] .feature-card,
html[data-theme="light"] .premium-column,
html[data-theme="light"] .quote-panel,
html[data-theme="light"] .premium-panel,
html[data-theme="light"] .cta-banner {
  background: rgba(255, 255, 255, 0.82);
}

html[data-theme="light"] .site-header {
  background: rgba(247, 249, 252, 0.82);
  border-bottom-color: rgba(16, 24, 40, 0.08);
}

html[data-theme="light"] .hero-points li,
html[data-theme="light"] .trust-pill {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(16, 24, 40, 0.08);
}

.carousel-frame::before {
  content: "";
  position: absolute;
  inset: 0.9rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  pointer-events: none;
}

.carousel-slides {
  position: relative;
  aspect-ratio: 16 / 11;
  border-radius: 26px;
  overflow: hidden;
  background: rgba(6, 10, 18, 0.85);
}

html[data-theme="light"] .carousel-slides {
  background: rgba(255, 255, 255, 0.9);
}

.carousel-slide {
  position: absolute;
  inset: 0;
  padding: 0;
  border: 0;
  background: transparent;
  opacity: 0;
  transform: scale(0.985);
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: none;
  cursor: pointer;
}

.carousel-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 24px;
  background: #050913;
  cursor: zoom-in;
}

html[data-theme="light"] .carousel-slide img {
  background: #fff;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.9rem;
}

.carousel-nav {
  min-width: 92px;
  min-height: 42px;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font: inherit;
  font-weight: 600;
}

html[data-theme="light"] .carousel-nav {
  border-color: rgba(16, 24, 40, 0.1);
  background: rgba(255, 255, 255, 0.82);
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.carousel-dot {
  width: 0.8rem;
  height: 0.8rem;
  padding: 0;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.24);
}

html[data-theme="light"] .carousel-dot {
  background: rgba(16, 24, 40, 0.18);
}

.carousel-dot.is-active {
  width: 2rem;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.carousel-hint {
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.9rem 0 1.8rem;
}

.section {
  padding: 2rem 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 1.8rem;
}

.section-heading-tight {
  margin-bottom: 0;
}

.section-heading p {
  margin: 1rem 0 0;
  font-size: 1.05rem;
}

.feature-grid,
.shot-grid,
.premium-grid {
  display: grid;
  gap: 1rem;
}

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

.feature-card,
.premium-column,
.quote-panel,
.cta-banner {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.feature-card {
  padding: 1.25rem;
  min-height: 164px;
}

.feature-card p,
.premium-column li {
  color: var(--muted);
  margin: 0;
}

.shot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)); /* Changed from 2 to 4 */
  gap: 1.25rem;
}

.shot-card {
  margin: 0;
  padding: 0.9rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.shot-card img {
  width: 100%;
  border-radius: 22px;
}

.shot-card figcaption {
  padding: 0.9rem 0.25rem 0.2rem;
  color: var(--muted);
}

.premium-panel {
  padding: 1.5rem;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(110, 231, 216, 0.08), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--line);
}

.premium-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.4rem;
}

.premium-column {
  padding: 1.35rem;
}

.premium-featured {
  background: linear-gradient(180deg, rgba(135, 167, 255, 0.12), rgba(15, 28, 49, 0.95));
  border-color: rgba(135, 167, 255, 0.24);
}

.premium-column ul {
  margin: 0;
  padding-left: 1.1rem;
}

.premium-column li + li {
  margin-top: 0.6rem;
}

.quote-panel {
  padding: 1.5rem;
  font-size: 1.1rem;
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.5rem;
  margin: 0 auto 2rem;
  background:
    radial-gradient(circle at top right, rgba(255, 203, 107, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
}

.cta-banner .store-badge {
  height: 60px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 0 2.3rem;
  font-size: 0.95rem;
}

.fullscreen-viewer {
  width: min(92vw, 980px);
  max-width: 92vw;
  border: 0;
  padding: 0.9rem;
  background: transparent;
  margin: auto;
  overflow: visible;
}

.fullscreen-viewer::backdrop {
  background: rgba(2, 6, 12, 0.68);
  backdrop-filter: blur(7px);
}

.fullscreen-viewer img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  background: #050913;
  box-shadow: var(--shadow);
}

html[data-theme="light"] .fullscreen-viewer img {
  background: #fff;
}

.fullscreen-close {
  display: block;
  margin: 0 0 0.75rem auto;
  min-height: 42px;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font: inherit;
  font-weight: 600;
}

html[data-theme="light"] .fullscreen-close {
  border-color: rgba(16, 24, 40, 0.1);
  background: rgba(255, 255, 255, 0.82);
}

.fullscreen-viewer[open] {
  display: grid;
  place-items: center;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(30px);
  opacity: 0.75;
  pointer-events: none;
  z-index: -1;
}

.bg-orb-a {
  top: 8rem;
  left: -4rem;
  width: 18rem;
  height: 18rem;
  background: rgba(110, 231, 216, 0.09);
}

.bg-orb-b {
  right: -6rem;
  top: 14rem;
  width: 22rem;
  height: 22rem;
  background: rgba(135, 167, 255, 0.08);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(1deg);
  }
  50% {
    transform: translateY(-10px) rotate(1.5deg);
  }
}

@media (max-width: 960px) {
  .hero,
  .feature-grid,
  .shot-grid,
  .premium-grid,
  .cta-banner {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-copy {
    order: 2;
  }

  .hero-visual {
    order: 1;
  }
}


@media (max-width: 720px) {
  :root {
    --shell: min(1120px, calc(100vw - 1.2rem));
  }

  /* 1. Give the header depth with a premium glass backdrop and subtle line border */
  .site-header {
    position: sticky;
    top: 0;
    backdrop-filter: blur(12px);
    background: rgba(8, 17, 31, 0.75);
    border-bottom: 1px solid rgba(170, 203, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  }

  html[data-theme="light"] .site-header {
    background: rgba(244, 247, 251, 0.8);
    border-bottom: 1px solid rgba(16, 24, 40, 0.05);
    box-shadow: 0 4px 30px rgba(16, 24, 40, 0.03);
  }

  /* 2. Scale down padding so it looks like a tight, professional app bar */
  .header-bar {
    min-height: 60px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 0.4rem;
  }


/* Reduce header-bar height so the content sits up higher */
  .header-bar {
    min-height: 60px !important; /* Forces a tighter vertical profile */
    padding: 0 0.75rem !important; /* Pushes elements slightly inward from the screen edge */

  }

  /* Bring the hero section closer to the bottom of the header */
  .hero {
    padding-top: 1.5rem !important; /* Reduces the massive gap above the image */
  }


  /* 3. Keep the subtitle hidden, but scale up the main app title font weight */
  .brand-copy strong {
    font-size: 1.05rem;
    letter-spacing: -0.02em;
  }

  .brand-copy span {
    display: none;
  }

  /* Shrink the logo icon slightly so it fits beautifully in the 60px row */
  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  /* 4. Completely eliminate the old desktop link layouts */
  .header-nav a,
  .header-store-text,
  .header-store-link {
    display: none !important;
  }

  .header-nav {
    display: flex;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
  }

  /* 5. Push your background glowing orbs higher up to fill the void */
  .bg-orb-a {
    top: -2rem !important;
    left: -6rem !important;
    opacity: 0.85;
  }

  /* --- Remaining Layout Rules --- */
  .site-footer,
  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  h1 {
    max-width: 100%;
  }

  .carousel-frame {
    padding: 0.75rem;
  }

  .feature-card,
  .premium-column,
  .premium-panel,
  .quote-panel,
  .shot-card,
  .cta-banner {
    border-radius: 22px;
  }

  .carousel-controls {
    gap: 0.45rem;
  }

  .carousel-nav {
    min-width: 76px;
    padding-inline: 0.75rem;
  }

  .carousel-hint {
    font-size: 0.88rem;
  }

  .store-badge {
    height: 52px;
  }
}

html[data-theme="light"] .brand-mark {
  box-shadow: 0 10px 25px rgba(8, 125, 112, 0.08);
  background: #fff;
}