@import url("https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --bg: #eceff6;
  --bg-soft: #e4e9f3;
  --surface: #f2f5fb;
  --surface-elev: #ffffff;
  --text: #111321;
  --text-dim: #4a5168;
  --line: #d2d7e4;
  --accent: #8f35f6;
  --accent-strong: #ed3aa4;
  --accent-soft: rgba(143, 53, 246, 0.14);
  --tone-light: linear-gradient(180deg, #dce4f0 0%, #d1dae9 100%);
  --tone-night: linear-gradient(180deg, #231c48 0%, #181233 100%);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

.bg-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 0.8px, transparent 0.8px);
  background-size: 2px 2px;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.section {
  padding: 5.5rem 0;
  border-top: 1px solid rgba(17, 19, 33, 0.06);
  position: relative;
  overflow: visible;
}

.tone-light {
  background: var(--tone-light);
}

.tone-night {
  background: var(--tone-night);
  color: #f8f9ff;
}

.tone-night .eyebrow {
  color: #da73ff;
}

.tone-night .lede,
.tone-night p,
.tone-night li,
.tone-night .feature-card p,
.tone-night .callout ul,
.tone-night .callout ol {
  color: #d8ddf3;
}

.tone-night h1,
.tone-night h2,
.tone-night h3,
.tone-night h4 {
  color: #ffffff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(237, 241, 248, 0.86);
  border-bottom: 1px solid rgb(179 179 179 / 24%);
  transition: background 0.22s ease, border-color 0.22s ease;
}

.site-header.home-header {
  position: fixed;
  left: 0;
  right: 0;
  backdrop-filter: blur(12px);
  background: rgba(24, 18, 51, 0);
  border-bottom: 1px solid rgb(179 179 179 / 24%);
}

.site-header.home-header.is-scrolled {
  background: rgba(24, 18, 51, 0);
  border-bottom: 1px solid rgb(179 179 179 / 24%);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-mark img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-logo {
  height: 34px;
  width: auto;
  object-fit: contain;
  transition: filter 0.22s ease;
}

.site-header.home-header .brand-logo {
  filter: none;
}

.site-header.home-header.is-on-dark .brand-logo {
  filter:
    drop-shadow(0 2px 10px rgba(8, 6, 19, 0.58))
    drop-shadow(0 0 1px rgba(0, 0, 0, 0.48));
}

.nav-cta {
  color: #ffffff;
  background: linear-gradient(130deg, #a54bff, #df3fa9);
  border: 1px solid rgba(223, 63, 169, 0.85);
  border-radius: 999px;
  padding: 0.48rem 0.95rem;
  font-weight: 700;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  color: #ffffff;
  filter: brightness(1.06);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.nav-link,
.dropdown-trigger {
  font: inherit;
  color: var(--text-dim);
  text-decoration: none;
  background: transparent;
  border: 0;
  padding: 0.5rem 0.3rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.nav-link:hover,
.dropdown-trigger:hover,
.nav-link:focus-visible,
.dropdown-trigger:focus-visible {
  color: #000000;
  outline: none;
}

.nav-link[aria-current="page"],
.dropdown-trigger[aria-expanded="true"] {
  color: #000000;
}

.site-header.home-header .nav-link,
.site-header.home-header .dropdown-trigger {
  color: #161923;
}

.site-header.home-header:not(.is-on-dark) .nav-link:hover,
.site-header.home-header:not(.is-on-dark) .dropdown-trigger:hover,
.site-header.home-header:not(.is-on-dark) .nav-link:focus-visible,
.site-header.home-header:not(.is-on-dark) .dropdown-trigger:focus-visible,
.site-header.home-header:not(.is-on-dark) .nav-link[aria-current="page"],
.site-header.home-header:not(.is-on-dark) .dropdown-trigger[aria-expanded="true"] {
  color: #161923;
}

.site-header.home-header.is-on-dark .nav-link,
.site-header.home-header.is-on-dark .dropdown-trigger {
  color: rgba(241, 237, 255, 0.88);
}

.site-header.home-header.is-on-dark .nav-link:hover,
.site-header.home-header.is-on-dark .dropdown-trigger:hover,
.site-header.home-header.is-on-dark .nav-link:focus-visible,
.site-header.home-header.is-on-dark .dropdown-trigger:focus-visible,
.site-header.home-header.is-on-dark .nav-link[aria-current="page"],
.site-header.home-header.is-on-dark .dropdown-trigger[aria-expanded="true"] {
  color: #ffffff;
}

.dropdown {
  position: relative;
}

.caret {
  margin-left: 0.35rem;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  min-width: 260px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-elev);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.45);
  padding: 0.5rem;
  display: none;
}

.dropdown.open .dropdown-menu {
  display: block;
}

.site-header.home-header .dropdown-menu {
  border-color: rgba(225, 216, 247, 0.24);
  background: rgba(24, 18, 51, 0.95);
}

.site-header.home-header .dropdown-menu a {
  color: rgba(241, 237, 255, 0.9);
}

.site-header.home-header .dropdown-menu a:hover,
.site-header.home-header .dropdown-menu a:focus-visible,
.site-header.home-header .dropdown-menu a[aria-current="page"] {
  color: #ffffff;
}

.dropdown-menu a {
  display: block;
  text-decoration: none;
  color: var(--text-dim);
  padding: 0.58rem 0.7rem;
  border-radius: 9px;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  color: #000000;
  background: rgba(255, 255, 255, 0.05);
  outline: none;
}

.dropdown-menu a[aria-current="page"] {
  color: #000000;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--surface);
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.site-header.home-header .mobile-toggle {
  border-color: var(--line);
  background: rgba(237, 241, 248, 0.74);
  transition: background 0.22s ease, border-color 0.22s ease;
}

.site-header.home-header .mobile-toggle span {
  background: var(--text);
  transition: background 0.22s ease;
}

.site-header.home-header.is-on-dark .mobile-toggle {
  border-color: rgba(236, 228, 255, 0.28);
  background: rgba(24, 18, 51, 0.36);
}

.site-header.home-header.is-on-dark .mobile-toggle span {
  background: #f1ebff;
}

.site-header.home-header.is-scrolled .mobile-toggle {
  border-color: var(--line);
  background: var(--surface);
}

.site-header.home-header.is-scrolled .mobile-toggle span {
  background: var(--text);
}

.hero {
  padding-top: 13.5rem;
  padding-bottom: 12rem;
  border-top: 0;
  background:
    radial-gradient(600px 280px at 74% 6%, rgba(255, 255, 255, 0.2) 0%, transparent 72%),
    linear-gradient(180deg, rgba(209, 218, 233, 0.86) 0%, rgba(209, 218, 233, 0.82) 100%),
    url("./brand/sky-bg.jpg");
  background-position: center, center, center;
  background-size: auto, auto, cover;
  background-repeat: no-repeat;
}

#home.hero {
  padding-top: 13.5rem;
  padding-bottom: 12rem;
  border-top: 0;
  background:
    radial-gradient(600px 280px at 74% 6%, #111321 0%, #231c4800 72%),
    linear-gradient(180deg, #181233b0 0%, #231c488c 100%),
    url("./brand/sky-bg.jpg");
  background-position: center, center, center;
  background-size: auto, auto, cover;
  background-repeat: no-repeat;
}

#home.hero h1 {
  color: #ffffff;
}

#home.hero .lede {
  color: #d8ddf3;
}

.feature-block {
  padding-top: 5.8rem;
  padding-bottom: 5.8rem;
}

.feature-layout {
  display: grid;
  grid-template-columns: 1.04fr 1fr;
  gap: 2.6rem;
  align-items: center;
}

.feature-block-swap .feature-media {
  order: 2;
}

.feature-block-swap .feature-copy {
  order: 1;
}

.feature-media {
  position: relative;
  min-height: 360px;
}

.feature-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.68rem;
}

.feature-gallery-row {
  margin-top: 6rem;
}

.database-feature-row {
  margin-top: 6rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.database-feature-card {
  background: transparent;
  padding: 0;
}

.database-feature-card img {
  width: 100%;
  display: block;
  border-radius: 0;
  border: 0;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.database-feature-card h3 {
  margin: 0.72rem 0 0.3rem;
  font-size: 1.02rem;
}

.database-feature-card p {
  margin: 0;
  font-size: 0.93rem;
  color: var(--text-dim);
  line-height: 1.5;
}

#get-started {
  padding-top: 7.8rem;
  padding-bottom: 7.8rem;
  border-top: 0;
  background:
    linear-gradient(180deg, rgba(35, 28, 72, 0.86) 0%, rgba(24, 18, 51, 0.9) 100%),
    url("./brand/exampleimage1.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.get-started-cta {
  display: flex;
  justify-content: center;
}

.get-started-cta-inner {
  width: min(100%, 760px);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(53, 42, 98, 0.55), rgba(33, 26, 64, 0.6));
  padding: 2rem 1.35rem 2.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.get-started-cta-inner h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.8vw, 2.85rem);
  color: #ffffff;
}

.get-started-cta-inner p {
  margin: 0;
  max-width: 58ch;
  color: #d8ddf3;
}

.get-started-support {
  margin-top: 0.5rem;
  margin-bottom: 0;
  font-weight: 600;
}

.get-started-cta-inner .btn {
  margin-top: 6rem;
}

.gallery-item {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  padding: 0;
  margin: 0;
  background: rgba(28, 22, 56, 0.38);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.gallery-item:hover,
.gallery-item:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(218, 115, 255, 0.7);
  box-shadow: 0 12px 24px rgba(8, 10, 20, 0.35);
  outline: none;
}

.gallery-item img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.gallery-lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 9, 16, 0.74);
}

.gallery-lightbox-panel {
  position: relative;
  width: min(94vw, 1140px);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(22, 17, 44, 0.96);
  padding: 1rem;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.gallery-lightbox-panel img {
  display: block;
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 10px;
}

.gallery-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  margin-bottom: 0.75rem;
  background: rgba(255, 255, 255, 0.09);
  color: #f8f9ff;
  font: inherit;
  cursor: pointer;
}

.gallery-close:hover,
.gallery-close:focus-visible {
  background: rgba(255, 255, 255, 0.15);
  outline: none;
}

.feature-copy h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.9rem, 3.8vw, 2.95rem);
  max-width: 18ch;
}

.feature-copy p {
  margin: 0;
  max-width: 54ch;
  font-size: 1.02rem;
}

.feature-media .placeholder-square.large {
  width: 320px;
  height: 320px;
  left: 14px;
  top: 0;
}

.feature-media .placeholder-square.small {
  width: 190px;
  height: 190px;
  left: 210px;
  top: 188px;
}

.feature-media .accent-square {
  left: 300px;
  top: 142px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.spotlight-band {
  margin-top: 0;
  padding-top: 2.2rem;
  padding-bottom: 3.6rem;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.4rem;
  align-items: start;
  position: relative;
  z-index: 2;
}

.spotlight-media {
  position: relative;
  min-height: 360px;
  margin-top: -176px;
}

.placeholder-square {
  position: absolute;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(145deg, rgba(233, 238, 249, 0.95), rgba(203, 213, 232, 0.96));
  box-shadow: 0 18px 38px rgba(8, 10, 20, 0.4);
}

.placeholder-square.large {
  width: 320px;
  height: 320px;
  left: 0;
  top: 0;
}

.placeholder-square.small {
  width: 190px;
  height: 190px;
  left: 195px;
  top: 190px;
}

.accent-square {
  position: absolute;
  width: 54px;
  height: 54px;
  left: 284px;
  top: 144px;
  background: linear-gradient(150deg, #9d3bff 0%, #e63da8 100%);
  border-radius: 4px;
}

.spotlight-copy h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 16ch;
}

.spotlight-copy h2 span {
  display: block;
  background: linear-gradient(90deg, #cc5cff 0%, #ff4d8f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.spotlight-copy p {
  max-width: 52ch;
  font-size: 1.03rem;
  line-height: 1.62;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
h3,
h4 {
  font-family: "Sora", sans-serif;
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: 17ch;
}

.lede {
  color: var(--text-dim);
  max-width: 60ch;
}

.hero-actions {
  margin-top: 1.7rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.meta {
  margin-top: 1rem;
  color: #5b637b;
  font-size: 0.92rem;
}

.hero-panel,
.feature-card,
.callout,
.support-form,
.site-footer {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(245, 248, 255, 0.95));
}

.tone-night .hero-panel,
.tone-night .feature-card,
.tone-night .callout,
.tone-night .support-form {
  border-color: rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(53, 42, 98, 0.55), rgba(33, 26, 64, 0.6));
}

.hero-panel {
  border-radius: 16px;
  padding: 1.25rem 1.15rem;
}

.hero-media-panel {
  position: relative;
  min-height: 320px;
  padding: 0;
  border: 0;
  background: transparent;
}

.hero-placeholder {
  position: absolute;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  background: linear-gradient(145deg, rgba(236, 241, 250, 0.95), rgba(208, 216, 234, 0.96));
  box-shadow: 0 18px 38px rgba(8, 10, 20, 0.22);
}

.hero-placeholder-main {
  width: 320px;
  height: 320px;
  top: 0;
  left: 0;
}

.hero-placeholder-sub {
  width: 190px;
  height: 190px;
  left: 195px;
  top: 190px;
}

.hero-panel h2 {
  font-size: 1.15rem;
}

.hero-panel ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--text-dim);
}

.hero-panel li + li {
  margin-top: 0.55rem;
}

.section-head {
  margin-bottom: 1.5rem;
}

.section-head h2 {
  margin-bottom: 0;
}

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

.feature-card {
  border-radius: 14px;
  padding: 1rem;
}

.feature-card h3 {
  margin-bottom: 0.4rem;
  font-size: 1.07rem;
}

.feature-card p {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.95rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: start;
}

.callout {
  border-radius: 14px;
  padding: 1rem;
}

.callout strong {
  font-family: "Sora", sans-serif;
}

.callout ul,
.callout ol {
  margin: 0.7rem 0 0;
  padding-left: 1rem;
  color: var(--text-dim);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 12px;
  min-height: 44px;
  padding: 0 1rem;
  border: 1px solid transparent;
  font-weight: 700;
  font-family: "Sora", sans-serif;
  cursor: pointer;
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(130deg, #a54bff, #df3fa9);
}

.btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.46);
  border-color: rgba(17, 19, 33, 0.18);
}

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

.support-form {
  border-radius: 14px;
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.support-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: var(--text-dim);
}

.support-form .full {
  grid-column: 1 / -1;
}

.support-form input,
.support-form textarea,
.support-form select {
  width: 100%;
  border: 1px solid #c7cede;
  border-radius: 10px;
  min-height: 42px;
  padding: 0.55rem 0.7rem;
  background: #ffffff;
  color: var(--text);
  font: inherit;
}

.tone-night .support-form input,
.tone-night .support-form textarea,
.tone-night .support-form select {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(20, 15, 38, 0.62);
  color: #f8f9ff;
}

.support-form textarea {
  min-height: 140px;
  resize: vertical;
}

.site-footer {
  margin-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  border-radius: 0;
  background: linear-gradient(180deg, #20183e 0%, #161029 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.8fr;
  gap: 1rem;
  padding: 2rem 0;
}

.footer-grid p {
  color: #cfd5ee;
}

.site-footer h3,
.site-footer h4,
.site-footer strong,
.site-footer li,
.site-footer span {
  color: #eef2ff;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-grid li + li {
  margin-top: 0.45rem;
}

.footer-grid a {
  color: #cfd5ee;
  text-decoration: none;
}

.footer-grid a:hover {
  color: #ffffff;
}

@media (max-width: 1024px) {
  .hero {
    padding-top: 11rem;
    padding-bottom: 9.5rem;
  }

  #home.hero {
    padding-top: 11rem;
    padding-bottom: 9.5rem;
  }

  .feature-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-block-swap .feature-media,
  .feature-block-swap .feature-copy {
    order: initial;
  }

  .feature-media {
    min-height: 290px;
  }

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

  .database-feature-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .feature-media .placeholder-square.large {
    width: 250px;
    height: 250px;
    left: 0;
  }

  .feature-media .placeholder-square.small {
    width: 150px;
    height: 150px;
    left: 155px;
    top: 145px;
  }

  .feature-media .accent-square {
    left: 232px;
    top: 108px;
  }

  .hero-grid,
  .split,
  .spotlight-grid {
    grid-template-columns: 1fr;
  }

  .spotlight-band {
    margin-top: 0;
    padding-top: 1.4rem;
  }

  .hero-media-panel {
    min-height: 280px;
  }

  .hero-placeholder-main {
    width: 250px;
    height: 250px;
  }

  .hero-placeholder-sub {
    width: 150px;
    height: 150px;
    left: 150px;
    top: 145px;
  }

  .spotlight-media {
    margin-top: -132px;
    min-height: 270px;
  }

  .placeholder-square.large {
    width: 250px;
    height: 250px;
  }

  .placeholder-square.small {
    width: 150px;
    height: 150px;
    left: 150px;
    top: 145px;
  }

  .accent-square {
    width: 44px;
    height: 44px;
    left: 226px;
    top: 112px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 800px) {
  .hero {
    padding-top: 8.9rem;
    padding-bottom: 7.8rem;
  }

  #home.hero {
    padding-top: 8.9rem;
    padding-bottom: 7.8rem;
  }

  .feature-block {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  #get-started {
    padding-top: 5.4rem;
    padding-bottom: 5.4rem;
  }

  .get-started-cta-inner {
    padding: 1.6rem 1rem 1.7rem;
    gap: 0.95rem;
  }

  .get-started-cta-inner .btn {
    margin-top: 3rem;
  }

  .feature-media {
    min-height: 240px;
  }

  .feature-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .database-feature-row {
    grid-template-columns: 1fr;
    margin-top: 3.5rem;
  }

  .feature-gallery-row {
    margin-top: 3.5rem;
  }

  .feature-media .placeholder-square.large {
    width: 205px;
    height: 205px;
  }

  .feature-media .placeholder-square.small {
    width: 124px;
    height: 124px;
    left: 126px;
    top: 120px;
  }

  .feature-media .accent-square {
    width: 36px;
    height: 36px;
    left: 193px;
    top: 90px;
  }

  .mobile-toggle {
    display: inline-block;
  }

  .primary-nav {
    position: absolute;
    top: 60px;
    left: 1rem;
    right: 1rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.7rem;
  }

  .primary-nav.open {
    display: flex;
  }

  .site-header.home-header .primary-nav {
    border-color: rgba(225, 216, 247, 0.24);
    background: rgba(24, 18, 51, 0.92);
  }

  .site-header.home-header .dropdown-menu {
    background: rgba(24, 18, 51, 0.95);
  }

  .site-header.home-header .dropdown-menu a {
    color: rgba(241, 237, 255, 0.9);
  }

  .site-header.home-header .dropdown-menu a:hover,
  .site-header.home-header .dropdown-menu a:focus-visible,
  .site-header.home-header .dropdown-menu a[aria-current="page"] {
    color: #ffffff;
  }

  .dropdown-menu {
    position: static;
    display: none;
    margin-top: 0.85rem;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  .feature-grid,
  .support-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .spotlight-band {
    margin-top: 0;
    padding-top: 1rem;
  }

  .hero-media-panel {
    min-height: 220px;
  }

  .hero-placeholder-main {
    width: 205px;
    height: 205px;
  }

  .hero-placeholder-sub {
    width: 124px;
    height: 124px;
    left: 126px;
    top: 120px;
  }

  .spotlight-media {
    margin-top: -96px;
    min-height: 232px;
  }

  .placeholder-square.large {
    width: 205px;
    height: 205px;
  }

  .placeholder-square.small {
    width: 124px;
    height: 124px;
    left: 126px;
    top: 120px;
  }

  .accent-square {
    width: 36px;
    height: 36px;
    left: 190px;
    top: 92px;
  }

  .section {
    padding: 4.2rem 0;
  }
}

@media (max-width: 560px) {
  .feature-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-lightbox-panel {
    width: min(95vw, 680px);
    padding: 0.78rem;
  }

  .gallery-close {
    margin-bottom: 0.55rem;
  }
}

  .support-card {
    display: grid;
    gap: 0.9rem;
  }

  .support-form {
    display: grid;
    gap: 0.58rem;
  }

  .support-form label {
    font-size: 0.89rem;
    color: var(--text);
    opacity: 0.9;
  }

  .support-form input,
  .support-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--text);
    border-radius: 10px;
    padding: 0.7rem 0.75rem;
    font: inherit;
  }

  .support-form textarea {
    resize: vertical;
  }

  .support-form .btn {
    margin-top: 0.3rem;
  }

  .support-status {
    min-height: 1.2rem;
    font-size: 0.9rem;
    margin: 0.15rem 0 0;
    color: var(--text-soft);
  }

  .support-status.success {
    color: #0d7a4f;
  }

  .support-status.error {
    color: #b82d2d;
  }

