:root {
  color-scheme: light;
  --bg: #f8fafc;
  --text: #101016;
  --primary: #0f766e;
  --secondary: #ccfbf1;
  --accent: #2563eb;
  --surface: color-mix(in srgb, var(--bg) 96%, var(--text));
  --surface-2: color-mix(in srgb, var(--secondary) 54%, var(--bg));
  --line: color-mix(in srgb, var(--text) 14%, transparent);
  --muted: color-mix(in srgb, var(--text) 64%, var(--bg));
  --primary-soft: color-mix(in srgb, var(--primary) 13%, var(--bg));
  --accent-soft: color-mix(in srgb, var(--accent) 12%, var(--bg));
  --shadow: 0 24px 80px color-mix(in srgb, var(--primary) 16%, transparent);
  --font-h1: 1.965rem;
  --font-h2: 1.777rem;
  --font-h3: 1.607rem;
  --font-h4: 1.474rem;
  --font-h5: 1.35rem;
  --font-h6: 1.2rem;
  --font-body: 1rem;
  --font-small: 0.85rem;
  --font-micro: 0.72rem;
  --line-heading: 1.15;
  --line-body: 1.6;
  --font-heading: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-family: var(--font-body-family);
}

@media (min-width: 768px) {
  :root {
    --font-h1: 2.896rem;
    --font-h2: 2.403rem;
    --font-h3: 2.022rem;
    --font-h4: 1.752rem;
    --font-h5: 1.517rem;
    --font-h6: 1.25rem;
    --font-small: 0.82rem;
    --font-micro: 0.659rem;
  }
}

@media (min-width: 1280px) {
  :root {
    --font-h1: 3.112rem;
    --font-h2: 2.509rem;
    --font-h3: 2.081rem;
    --font-h4: 1.777rem;
    --font-h5: 1.517rem;
    --font-h6: 1.25rem;
    --font-small: 0.8rem;
    --font-micro: 0.622rem;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: 82px;
  background: var(--bg);
  color: var(--text);
  font-size: var(--font-body);
  font-weight: 500;
  line-height: var(--line-body);
}

a {
  color: inherit;
}

.site-footer,
.section-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  min-height: 82px;
  margin: 0;
  padding-inline: max(20px, calc((100vw - 1120px) / 2));
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: blur(18px);
}

[id] {
  scroll-margin-top: 98px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.nav-toggle-bars {
  position: relative;
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.2s ease;
}

.nav-toggle-bars::before {
  top: -6px;
}

.nav-toggle-bars::after {
  top: 6px;
}

.site-header.is-open .nav-toggle-bars {
  background: transparent;
}

.site-header.is-open .nav-toggle-bars::before {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-open .nav-toggle-bars::after {
  transform: translateY(-6px) rotate(-45deg);
}

.cta-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-cta .cta-icon {
  display: none;
}

.nav {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: var(--font-small);
  font-weight: 700;
}

.nav a,
.site-footer a {
  text-decoration: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease, border-color 0.16s ease;
}

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

.button:active {
  transform: translateY(0);
}

.button-primary {
  border-color: transparent;
  background: var(--primary);
  color: #fff;
}

.button-primary:hover {
  background: color-mix(in srgb, var(--primary) 88%, #000);
  box-shadow: var(--shadow);
}

.button-ghost {
  background: var(--surface);
}

.button-ghost:hover {
  border-color: color-mix(in srgb, var(--primary) 40%, var(--line));
}

/* Accessibility + interaction polish */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 50;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  transition: top 0.18s ease;
}

.skip-link:focus {
  top: 16px;
}

:where(a, button, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

.nav a {
  transition: color 0.16s ease;
}

.nav a:hover {
  color: var(--text);
}

.site-footer a:hover {
  color: var(--text);
}

.hero {
  position: relative;
  min-height: max(560px, 70vh);
  overflow: hidden;
  border-bottom: 0;
  background:
    radial-gradient(circle at 16% 24%, var(--secondary), transparent 30%),
    radial-gradient(circle at 84% 74%, var(--accent-soft), transparent 32%),
    linear-gradient(180deg, var(--bg), var(--surface));
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(color-mix(in srgb, var(--text) 5%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--text) 5%, transparent) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}

.hero-backdrop {
  position: absolute;
  inset: auto 0 0 auto;
  width: min(680px, 70vw);
  height: 430px;
  background: var(--hero-image) center / cover;
  opacity: 0.2;
  filter: saturate(1.12);
  mask-image: radial-gradient(circle, #000 0, transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  min-height: max(560px, 70vh);
  text-align: center;
}

.hero-content {
  min-width: 0;
}

.hero-split .hero-inner {
  width: min(1120px, calc(100% - 40px));
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.58fr);
  gap: 54px;
  text-align: left;
}

.hero-split .hero-inner::after,
.hero-poster .hero-inner::after {
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(7, 9, 13, 0.05), rgba(7, 9, 13, 0.62)),
    var(--hero-image) center / cover;
  box-shadow: var(--shadow);
  content: "";
}

.hero-poster .hero-inner {
  min-height: max(580px, 70vh);
}

.hero-poster .hero-inner::after {
  width: min(760px, 100%);
  height: 240px;
  margin: 44px auto 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--primary);
  font-size: var(--font-micro);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: var(--line-heading);
  letter-spacing: 0;
  font-family: var(--font-heading);
}

h1 {
  max-width: 860px;
  margin-inline: auto;
  margin-bottom: 22px;
  font-size: var(--font-h1);
}

h2 {
  font-size: var(--font-h2);
}

h3 {
  font-size: var(--font-h3);
}

h4 {
  font-size: var(--font-h4);
}

h5 {
  font-size: var(--font-h5);
}

h6 {
  font-size: var(--font-h6);
}

.hero-split h1 {
  margin-inline: 0;
}

.hero-copy {
  max-width: 660px;
  margin: 0 auto 34px;
  color: var(--muted);
  font-size: var(--font-h6);
  font-weight: 650;
}

.hero-split .hero-copy {
  margin-inline: 0;
}

.photo-credit {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: var(--font-small);
}

.photo-credit a {
  color: var(--primary);
  font-weight: 800;
  text-decoration: none;
}

.hero-split .photo-credit {
  margin-inline: 0;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.hero-split .actions {
  justify-content: flex-start;
}

.section {
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
}

.section-tight {
  padding: 56px 0;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading h2,
.cta h2,
.contact-teaser h2 {
  margin-bottom: 10px;
  font-size: var(--font-h2);
  line-height: var(--line-heading);
}

.section-heading p,
.cta p,
.contact-teaser p,
.feature-card p,
.legal p,
.legal li,
.legal td,
.contact-page p {
  color: var(--muted);
  font-weight: 600;
}

.features {
  display: grid;
  gap: 20px;
}

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

.features-list,
.features-vertical {
  max-width: 860px;
  margin: 0 auto;
}

.features-list {
  grid-template-columns: 1fr;
}

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

.feature-card {
  display: flex;
  gap: 18px;
  min-height: 142px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(160deg, var(--surface), var(--bg));
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--primary) 30%, var(--line));
  box-shadow: var(--shadow);
}

.feature-card h3 {
  margin-bottom: 8px;
  font-size: var(--font-h5);
}

.icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid color-mix(in srgb, var(--primary) 32%, var(--bg));
  border-radius: 8px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: var(--font-micro);
  font-weight: 900;
}

.icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stats {
  display: grid;
  gap: 20px;
}

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

.stats-rail {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 920px;
  margin: 0 auto;
}

.stat {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.stat:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--primary) 26%, var(--line));
}

.stat strong,
.stat span {
  display: block;
}

.stat strong {
  font-size: var(--font-h4);
}

.stat span {
  color: var(--muted);
  font-weight: 700;
}

.faq-wrap {
  max-width: 900px;
}

.faq-two {
  max-width: 1040px;
}

.faq-two .faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.faq-item {
  transition: border-color 0.18s ease;
}

.faq-item[data-open="true"] {
  border-color: color-mix(in srgb, var(--primary) 34%, var(--line));
}

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-plus {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: var(--font-h6);
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq-item[data-open="true"] .faq-plus {
  transform: rotate(45deg);
}

.faq-panel {
  padding: 0 20px 20px;
}

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

.cta {
  padding: 62px 0;
  background:
    radial-gradient(circle at 82% 40%, var(--accent-soft), transparent 30%),
    linear-gradient(90deg, var(--primary-soft), var(--secondary));
  border-bottom: 1px solid var(--line);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.cta-split .cta-inner {
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 36px;
  background: var(--surface);
}

.contact-teaser,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 36px;
  background: var(--surface);
  text-align: center;
}

.narrow {
  max-width: 760px;
}

.legal h1,
.contact-page h1 {
  margin-bottom: 12px;
  font-size: var(--font-h1);
}

.legal h2 {
  margin-top: 34px;
}

.legal ul,
.legal ol {
  display: grid;
  gap: 10px;
  margin: 0 0 20px;
  padding-left: 24px;
}

.legal-table-wrap {
  max-width: 100%;
  margin: 22px 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.legal table {
  width: 100%;
  border-collapse: collapse;
}

.legal th,
.legal td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.legal tr:last-child td {
  border-bottom: 0;
}

.legal th {
  background: var(--surface);
  font-weight: 800;
}

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

dl {
  display: grid;
  gap: 22px;
  margin: 32px 0 0;
  text-align: left;
}

dt {
  color: var(--muted);
  font-size: var(--font-micro);
  font-weight: 900;
  text-transform: uppercase;
}

dd {
  margin: 6px 0 0;
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 100px;
  color: var(--muted);
  font-size: var(--font-small);
  font-weight: 700;
}

.site-footer nav {
  display: flex;
  gap: 22px;
}

.align-left {
  margin-inline: 0;
  text-align: left;
}

.opl-page {
  position: relative;
  overflow: hidden;
  border-bottom: 0;
}

.opl-kicker {
  margin: 0 0 18px;
  color: var(--primary);
  font-size: var(--font-small);
  font-weight: 900;
  text-transform: uppercase;
}

.opl-ai {
  min-height: max(580px, 70vh);
  padding: 106px max(20px, calc((100vw - 1120px) / 2)) 96px;
  background:
    linear-gradient(90deg, var(--secondary), transparent 44%),
    radial-gradient(circle at 85% 22%, var(--accent-soft), transparent 28%),
    var(--bg);
}

.opl-hero {
  max-width: 930px;
}

.opl-hero h1 {
  max-width: 900px;
  margin: 0 0 24px;
  font-size: var(--font-h1);
}

.opl-hero p {
  max-width: 660px;
  color: var(--muted);
  font-size: var(--font-h6);
  font-weight: 650;
}

.ai-cover {
  position: absolute;
  right: max(20px, calc((100vw - 1120px) / 2));
  bottom: 72px;
  display: grid;
  grid-template-columns: repeat(3, 150px);
  gap: 16px;
}

.ai-cover div {
  height: 230px;
  border: 0;
  border-radius: 8px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--bg) 10%, transparent), color-mix(in srgb, var(--primary) 28%, transparent)),
    var(--hero-image) center / cover;
  box-shadow: var(--shadow);
}

.ai-cover div:nth-child(2) {
  margin-top: 54px;
}

.ai-cover div:nth-child(3) {
  margin-top: 108px;
}

.report-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.report-strip div {
  min-height: 180px;
  padding: 42px;
  border-right: 1px solid var(--line);
}

.report-strip strong,
.report-strip span {
  display: block;
}

.report-strip strong {
  font-size: var(--font-h3);
}

.report-strip span {
  color: var(--muted);
  font-weight: 800;
}

.trend-list {
  padding: 100px 0;
}

.trend-row {
  display: grid;
  grid-template-columns: 80px minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 28px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.trend-row span {
  color: var(--primary);
  font-weight: 900;
}

.trend-row h3,
.trend-row p {
  margin: 0;
}

.trend-row p {
  color: var(--muted);
  font-weight: 650;
}

.landmark-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 0.68fr);
  min-height: max(580px, 70vh);
  gap: 70px;
  align-items: center;
  padding: 72px max(20px, calc((100vw - 1120px) / 2));
  background: var(--surface);
}

.landmark-copy h1 {
  max-width: 760px;
  margin: 0 0 24px;
}

.landmark-copy p:not(.opl-kicker) {
  max-width: 560px;
  color: var(--muted);
  font-size: var(--font-h6);
  font-weight: 650;
}

.landmark-image {
  margin: 0;
}

.landmark-image div {
  min-height: 520px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, transparent, color-mix(in srgb, var(--primary) 24%, transparent)),
    var(--hero-image) center / cover;
  box-shadow: var(--shadow);
}

.landmark-image figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-size: var(--font-small);
}

.landmark-section {
  padding: 100px 0;
}

.landmark-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1fr);
  gap: 70px;
}

.landmark-grid ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.landmark-grid li {
  display: grid;
  grid-template-columns: minmax(170px, 0.34fr) minmax(0, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.landmark-grid li span {
  font-weight: 900;
}

.landmark-grid li p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.designme-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(320px, 0.7fr);
  gap: 24px;
  min-height: max(580px, 70vh);
  padding: 40px max(20px, calc((100vw - 1120px) / 2)) 80px;
  background: var(--bg);
}

.designme-panel {
  align-self: end;
  padding: 42px 0;
}

.designme-panel h1 {
  margin: 0 0 22px;
}

.designme-panel p:not(.opl-kicker) {
  color: var(--muted);
  font-size: var(--font-h6);
  font-weight: 650;
}

.designme-shot {
  align-self: stretch;
  min-height: 560px;
  border: 0;
  border-radius: 8px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--bg) 6%, transparent), color-mix(in srgb, var(--primary) 20%, transparent)),
    var(--hero-image) center / cover;
  box-shadow: var(--shadow);
}

.module-board {
  padding: 100px 0;
  background: var(--surface);
}

.module-top {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(260px, 0.6fr);
  gap: 24px;
  margin-bottom: 24px;
}

.module-top > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.module-stat,
.module-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
}

.module-stat {
  padding: 22px;
}

.module-stat strong,
.module-stat span {
  display: block;
}

.module-stat span {
  color: var(--muted);
  font-size: var(--font-small);
  font-weight: 800;
}

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

.module-card {
  min-height: 230px;
  padding: 28px;
}

.module-card small {
  color: var(--primary);
  font-size: var(--font-small);
  font-weight: 900;
  text-transform: uppercase;
}

.module-card h3 {
  margin: 28px 0 12px;
  font-size: var(--font-h5);
}

.module-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

/* opl-gallery */
.gallery-hero {
  display: grid;
  align-content: end;
  min-height: max(540px, 64vh);
  padding: 120px max(20px, calc((100vw - 1120px) / 2)) 64px;
  background:
    linear-gradient(180deg, rgba(7, 9, 13, 0.1), rgba(7, 9, 13, 0.72)),
    var(--hero-image) center / cover;
  color: #fff;
}

.gallery-scrim {
  display: none;
}

.gallery-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.gallery-hero .opl-kicker {
  color: color-mix(in srgb, var(--secondary) 70%, #fff);
}

.gallery-hero h1 {
  margin: 0 0 18px;
  color: #fff;
  font-size: var(--font-h1);
}

.gallery-lede {
  max-width: 620px;
  margin: 0 0 28px;
  color: color-mix(in srgb, #fff 86%, var(--secondary));
  font-size: var(--font-h6);
  font-weight: 600;
}

.gallery-grid-section {
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
}

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

.gallery-tile {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 240px;
  margin: 0;
  padding: 16px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, transparent 55%, rgba(7, 9, 13, 0.66)),
    var(--tile-image) center / cover;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.2s ease;
}

.gallery-tile:hover {
  transform: translateY(-3px);
}

.gallery-tile figcaption {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: var(--font-micro);
  font-weight: 700;
}

.gallery-features {
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}

.gallery-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 48px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gallery-feature-list li {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.gallery-feature-list span {
  display: block;
  margin-bottom: 6px;
  font-weight: 900;
}

.gallery-feature-list p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

/* opl-spotlight */
.spotlight-hero {
  position: relative;
  display: grid;
  align-content: center;
  min-height: max(620px, 82vh);
  padding: 120px max(20px, calc((100vw - 1120px) / 2));
  background:
    linear-gradient(120deg, rgba(7, 9, 13, 0.78), rgba(7, 9, 13, 0.28) 70%),
    var(--hero-image) center / cover;
  color: #fff;
  overflow: hidden;
}

.spotlight-scrim {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, color-mix(in srgb, var(--primary) 36%, transparent), transparent 45%);
  mix-blend-mode: screen;
}

.spotlight-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.spotlight-kicker {
  color: color-mix(in srgb, var(--secondary) 72%, #fff);
}

.spotlight-hero h1 {
  margin: 0 0 20px;
  color: #fff;
  font-size: var(--font-h1);
}

.spotlight-lede {
  max-width: 600px;
  margin: 0 0 30px;
  color: color-mix(in srgb, #fff 88%, var(--secondary));
  font-size: var(--font-h6);
  font-weight: 600;
}

.spotlight-credit {
  margin: 22px 0 0;
  color: color-mix(in srgb, #fff 72%, transparent);
  font-size: var(--font-small);
}

.spotlight-credit a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.spotlight-strip {
  padding: 88px 0;
  border-bottom: 1px solid var(--line);
}

.spotlight-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.spotlight-feature {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(160deg, var(--surface), var(--bg));
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.spotlight-feature:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--primary) 30%, var(--line));
}

.spotlight-index {
  display: block;
  margin-bottom: 14px;
  color: var(--primary);
  font-size: var(--font-h5);
  font-weight: 900;
}

.spotlight-feature h3 {
  margin: 0 0 8px;
  font-size: var(--font-h5);
}

.spotlight-feature p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

@media (max-width: 860px) {
  body {
    padding-top: 0;
  }

  .site-header {
    position: sticky;
    top: 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    column-gap: 12px;
    row-gap: 0;
    padding: 10px 0;
    min-height: 64px;
  }

  .nav-toggle {
    display: inline-flex;
    grid-column: 1;
    justify-self: start;
  }

  .brand {
    grid-column: 2;
    justify-self: center;
  }

  .site-header .header-cta {
    grid-column: 3;
    justify-self: end;
    width: 44px;
    min-width: 44px;
    padding: 0;
  }

  .site-header .header-cta .button-label {
    display: none;
  }

  .site-header .header-cta .cta-icon {
    display: block;
  }

  .nav {
    grid-column: 1 / -1;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.25s ease, opacity 0.2s ease;
  }

  .site-header.is-open .nav {
    max-height: 320px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--line);
    opacity: 1;
    visibility: visible;
  }

  .nav a {
    width: 100%;
    padding: 12px 4px;
  }

  .hero,
  .hero-inner,
  .hero-split .hero-inner,
  .hero-poster .hero-inner {
    min-height: max(520px, 70vh);
  }

  .hero-split .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-split h1,
  .hero-split .hero-copy {
    margin-inline: auto;
  }

  .hero-split .actions {
    justify-content: center;
  }

  .hero-split .hero-inner::after {
    display: none;
  }

  .features-grid,
  .features-vertical,
  .stats-row,
  .stats-rail,
  .faq-two .faq-list {
    grid-template-columns: 1fr;
  }

  .cta-inner,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-inner .actions {
    justify-content: flex-start;
  }

  .opl-ai,
  .landmark-hero,
  .designme-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 70px 20px;
  }

  .ai-cover {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 40px;
  }

  .ai-cover div,
  .landmark-image div,
  .designme-shot {
    min-height: 280px;
  }

  .report-strip,
  .trend-row,
  .landmark-grid,
  .landmark-grid li,
  .module-top,
  .module-top > div,
  .module-grid,
  .gallery-grid,
  .gallery-feature-list,
  .spotlight-strip-grid {
    grid-template-columns: 1fr;
  }

  .gallery-hero,
  .spotlight-hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .spotlight-hero {
    min-height: max(560px, 76vh);
  }
}

@media (max-width: 560px) {
  .site-header,
  .site-footer,
  .section-inner {
    width: min(100% - 28px, 1120px);
  }

  .section {
    padding: 70px 0;
  }

  .button {
    width: 100%;
  }

  .actions {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

.hub-search {
  display: flex;
  gap: 10px;
  max-width: 560px;
  margin: 28px 0 0;
}

.hub-search input {
  min-width: 0;
  flex: 1;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  font: inherit;
}

.hub-search-inline {
  margin: 0 0 28px;
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.hub-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.hub-card a {
  display: grid;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.hub-card-image {
  min-height: 150px;
  background:
    linear-gradient(180deg, transparent, color-mix(in srgb, var(--text) 24%, transparent)),
    var(--card-image, var(--hero-image)) center / cover;
}

.hub-card-body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.hub-card strong {
  font-size: var(--font-h5);
  line-height: var(--line-heading);
}

.hub-card span span {
  color: var(--muted);
  font-size: var(--font-small);
}

.hub-theme-hero .hero-inner::after {
  background:
    linear-gradient(180deg, rgba(7, 9, 13, 0.05), rgba(7, 9, 13, 0.62)),
    var(--hero-image) center / cover;
}

.hub-screenshots {
  background: color-mix(in srgb, var(--secondary) 24%, var(--bg));
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.screenshot-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.screenshot-card.is-featured {
  grid-column: span 3;
}

.screenshot-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.screenshot-card figcaption {
  padding: 14px 16px;
  color: var(--muted);
  font-size: var(--font-small);
  font-weight: 800;
}

@media (max-width: 700px) {
  .hub-search {
    flex-direction: column;
  }

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

  .screenshot-card.is-featured {
    grid-column: auto;
  }
}
