:root {
  --bg: #070a12;
  --bg-2: #0c111b;
  --elev: rgba(16, 22, 34, 0.72);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #f3f6ff;
  --muted: #939bb0;
  --cyan: #5ee7ff;
  --violet: #9b87ff;
  --ok: #7dffa3;
  --font: "Instrument Sans", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --serif: "Instrument Serif", ui-serif, Georgia, serif;
  --max: 1120px;
  --nav-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(900px 520px at 12% -10%, rgba(94, 231, 255, 0.14), transparent 55%),
    radial-gradient(800px 480px at 92% 8%, rgba(155, 135, 255, 0.16), transparent 50%),
    linear-gradient(180deg, #070a12 0%, #070a12 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 70%);
}

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

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

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(18px) saturate(1.2);
  background: rgba(7, 10, 18, 0.72);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: -0.03em;
  font-size: 17px;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  flex-shrink: 0;
  display: block;
}

.nav-links {
  display: flex;
  gap: 22px;
  margin-left: 8px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--text);
}

.nav-spacer {
  flex: 1;
}

.lang {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  font-size: 12px;
  font-weight: 600;
}

.lang button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 6px 10px;
  cursor: pointer;
  font: inherit;
}

.lang button[aria-pressed="true"] {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.lang-picker {
  flex-shrink: 0;
}

.lang-picker select {
  appearance: none;
  -webkit-appearance: none;
  min-width: 7.5rem;
  max-width: 9.5rem;
  padding: 7px 28px 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05)
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23939bb0' d='M1 1.5L6 6.5 11 1.5'/></svg>")
    no-repeat right 10px center;
  color: var(--text);
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}

.lang-picker select:hover,
.lang-picker select:focus {
  border-color: var(--line-strong);
  outline: none;
}

.req-line {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  max-width: 40em;
}

html[lang^="zh"] h1,
html[lang^="zh"] h2,
html[lang="ja"] h1,
html[lang="ja"] h2,
html[lang="ko"] h1,
html[lang="ko"] h2 {
  letter-spacing: -0.02em;
}

html[lang="zh-Hans"] {
  --font: "Instrument Sans", "PingFang SC", "Hiragino Sans GB", "Noto Sans SC", "Microsoft YaHei", sans-serif;
}

html[lang="zh-Hant"] {
  --font: "Instrument Sans", "PingFang TC", "Hiragino Sans CNS", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
}

html[lang="ja"] {
  --font: "Instrument Sans", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
}

html[lang="ko"] {
  --font: "Instrument Sans", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
}

.mas-link {
  display: inline-flex;
  flex-shrink: 0;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.mas-link:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.mas-link img {
  height: 40px;
  width: auto;
}

.dl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 10px;
  background: var(--text);
  color: #070a12;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.02em;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.dl-btn:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.dl-btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.dl-btn-ghost:hover {
  opacity: 1;
  border-color: var(--text);
}

.hero .gab-buy-note {
  margin: 16px 0 0;
  max-width: 36em;
}

.gab-buy-note a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-actions .dl-btn {
  min-height: 48px;
  padding: 0 22px;
  font-size: 16px;
}

.product-card-store.dl-btn {
  min-height: 32px;
  padding: 0 12px;
  font-size: 13px;
}

.hero {
  padding: 72px 0 28px;
}

.home {
  --product-gap: 160px;
  --chunk-gap: 32px;
  --copy-gap: 12px;
}

.home .hero {
  padding: 72px 0 0;
}

.home .hero-grid {
  align-items: start;
}

.home .product-block .section {
  padding: var(--chunk-gap) 0 0;
}

.home .product-block.section {
  padding: 0;
}

.home .product-block + .product-block,
.home .product-block + #company {
  margin-top: var(--product-gap);
}

.home #company {
  padding-top: 0;
}

.home .hero h1,
.home .vee-title {
  margin: var(--copy-gap) 0;
}

.home .hero-punch {
  margin: 0 0 var(--copy-gap);
}

.home .hero .lede,
.home .veecam-block .lede {
  margin: 0 0 var(--copy-gap);
}

.home .hero .req-line,
.home .veecam-block .req-line {
  margin: 0 0 22px;
}

.home .section-kicker {
  margin-bottom: 8px;
}

.home .section-lead {
  margin-top: var(--copy-gap);
}

.home .vee-subkicker {
  margin-top: var(--chunk-gap);
}

.home .modes,
.home .grid,
.home .vee-grid {
  margin-top: var(--chunk-gap);
}

.home .section > .grid:first-child {
  margin-top: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 600;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

h1,
h2,
h3 {
  letter-spacing: -0.045em;
  line-height: 1.08;
  margin: 0;
}

.hero h1 {
  font-size: clamp(48px, 7vw, 84px);
  font-weight: 600;
  margin: 14px 0 16px;
}

.hero h1 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: #d9deff;
}

[data-page="veecam"] .hero h1 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: #d9deff;
}

[data-page="veecam"] .hero h1 em {
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
  color: inherit;
}

.lede {
  font-size: 19px;
  color: var(--muted);
  max-width: 34em;
  margin: 0 0 28px;
}

.hero-punch {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.22;
  margin: 0 0 12px;
  max-width: 18em;
}

.hero .lede,
.veecam-block .lede {
  margin-bottom: 12px;
}

.hero .req-line,
.veecam-block .req-line {
  margin: 0 0 28px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.product-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.product-lockup img {
  width: 88px;
  height: 88px;
  flex-shrink: 0;
  object-fit: contain;
  filter: drop-shadow(0 18px 40px rgba(94, 231, 255, 0.18));
}

.product-lockup .meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.product-lockup strong {
  font-size: 20px;
  letter-spacing: -0.04em;
}

.product-lockup span {
  color: var(--muted);
  font-size: 13px;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 2704 / 1756;
  object-fit: contain;
  background: #0a101c;
  border-radius: 22px;
  border: 1px solid var(--line-strong);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(94, 231, 255, 0.08);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: auto 12% -40px 12%;
  height: 80px;
  background: radial-gradient(closest-side, rgba(155, 135, 255, 0.35), transparent);
  filter: blur(12px);
  z-index: -1;
}

.section {
  padding: 84px 0;
  position: relative;
  z-index: 1;
}

.section-kicker {
  color: var(--violet);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section h2 {
  font-size: clamp(28px, 4vw, 42px);
  max-width: 14em;
}

.section-lead {
  color: var(--muted);
  max-width: 40em;
  margin: 14px 0 0;
}

.modes {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 36px;
}

.mode {
  border: 1px solid var(--line);
  background: var(--elev);
  border-radius: 16px;
  padding: 18px 14px 16px;
  text-align: center;
  backdrop-filter: blur(16px);
}

.mode svg {
  width: 22px;
  height: 22px;
  stroke: var(--cyan);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin: 0 auto 10px;
}

.mode b {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.section > .grid:first-child {
  margin-top: 0;
}

.card {
  background: var(--elev);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px 22px 20px;
  backdrop-filter: blur(16px);
  min-height: 168px;
}

.card h3 {
  font-size: 18px;
  margin: 0 0 8px;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
}

.card .icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  background: linear-gradient(180deg, rgba(94, 231, 255, 0.16), rgba(155, 135, 255, 0.1));
  border: 1px solid var(--line);
  color: var(--cyan);
}

.showcase {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.showcase img {
  width: 100%;
  height: auto;
  aspect-ratio: 2704 / 1756;
  object-fit: contain;
  background: #0a101c;
  border-radius: 22px;
  border: 1px solid var(--line-strong);
}

.company {
  display: flex;
  align-items: center;
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
}

.company img {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  object-fit: contain;
}

.company h2 {
  font-size: 22px;
  max-width: none;
}

.company .section-lead {
  margin-top: 6px;
  max-width: none;
}

.vee-title {
  font-size: clamp(40px, 5.6vw, 68px);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  margin: 14px 0 16px;
  max-width: 14em;
  color: #d9deff;
}

.vee-title em {
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
  color: inherit;
}

.vee-subtitle {
  font-size: clamp(24px, 3.4vw, 34px);
  letter-spacing: -0.04em;
  max-width: 16em;
}

.vee-subkicker {
  margin-top: 72px;
}

.vee-grid {
  margin-top: 28px;
}

.vee-shots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.vee-shots img {
  width: 100%;
  height: auto;
  aspect-ratio: 2880 / 1800;
  object-fit: contain;
  background: #0a101c;
  border-radius: 18px;
  border: 1px solid var(--line-strong);
}

@media (max-width: 900px) {
  .vee-shots {
    grid-template-columns: 1fr;
  }
}

.footer {
  border-top: 1px solid var(--line);
  padding: 36px 0 48px;
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 13px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  align-items: start;
}

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

.footer nav {
  display: flex;
  gap: 18px;
}

.page {
  padding: 56px 0 96px;
  position: relative;
  z-index: 1;
}

.page h1 {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 12px;
}

.legal {
  max-width: 720px;
  color: #c6ccdc;
}

.legal h2 {
  font-size: 20px;
  margin: 32px 0 10px;
}

.legal p,
.legal li {
  color: var(--muted);
}

.legal ul {
  margin: 0 0 8px 1.2em;
}

.legal li {
  margin: 0 0 8px;
}

.legal a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  max-width: 720px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  padding: 0 20px;
}

.faq-item summary {
  cursor: pointer;
  padding: 16px 0;
  font-weight: 600;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--cyan);
  font-weight: 500;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0 0 16px;
  color: var(--muted);
}

.faq-item a {
  color: var(--cyan);
}

.hidden {
  display: none !important;
}

@media (max-width: 900px) {
  .home {
    --product-gap: 96px;
    --chunk-gap: 28px;
  }

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

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

  .nav-inner {
    gap: 12px;
  }

  .nav-links {
    gap: 10px;
    font-size: 13px;
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 40px;
  }

  .company {
    flex-wrap: wrap;
    padding: 20px;
  }
}

@media (max-width: 560px) {
  .modes {
    grid-template-columns: repeat(2, 1fr);
  }

  .mas-nav,
  .nav .dl-btn {
    display: none;
  }
}

html {
  scroll-padding-top: calc(var(--nav-h) + 12px);
}

.nav-drop {
  position: relative;
  padding-bottom: 16px;
  margin-bottom: -16px;
}

.nav-drop-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  padding: 0;
  cursor: pointer;
}

.nav-drop-btn::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 6px;
  margin-bottom: 2px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.7;
}

.nav-drop-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 196px;
  padding: 8px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(12, 17, 27, 0.94);
  backdrop-filter: blur(18px) saturate(1.2);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  z-index: 30;
}

.nav-drop-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 14px;
}

.nav-drop-menu a {
  display: block;
  padding: 9px 12px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 13px;
}

.nav-drop-menu a:hover,
.nav-drop-menu a.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-drop:hover .nav-drop-menu,
.nav-drop:focus-within .nav-drop-menu,
.nav-drop.is-open .nav-drop-menu {
  display: block;
}

.nav-drop.is-current .nav-drop-btn,
.nav-links > a.is-active {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.02em;
  border: 1px solid transparent;
  transition: transform 0.18s ease, opacity 0.18s ease, background 0.18s ease;
}

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

.btn-primary {
  background: var(--text);
  color: #070a12;
}

.btn-primary:hover {
  opacity: 0.92;
}

.btn-ghost {
  border-color: var(--line-strong);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.site-hero {
  padding: 96px 0 28px;
}

.site-hero h1 {
  font-size: clamp(44px, 7vw, 80px);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  margin: 0 0 18px;
  line-height: 1.18;
  color: #d9deff;
}

.site-hero h1 em {
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
  color: inherit;
}

.site-hero .lede {
  margin-top: 44px;
  margin-bottom: 0;
  max-width: none;
}

.is-unlisted {
  display: none !important;
}

.product-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.product-cards:has(.product-card.is-unlisted) {
  grid-template-columns: 1fr 1fr;
}

.product-card {
  position: relative;
  display: block;
  background: var(--elev);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px 20px 20px;
  backdrop-filter: blur(16px);
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.product-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.product-card-store {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
}

.product-card-store img {
  height: 32px;
  width: auto;
}

.product-card-body {
  display: flex;
  flex-direction: column;
  min-height: 200px;
}

.product-card .product-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  filter: drop-shadow(0 14px 28px rgba(94, 231, 255, 0.16));
}

.product-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.product-card p {
  margin: 0 0 10px;
  color: var(--muted);
}

.product-card .product-promo {
  margin: 0 0 22px;
  color: var(--cyan);
  font-size: 14px;
  font-weight: 600;
}

.product-card .more {
  margin-top: auto;
  align-self: flex-end;
  color: var(--cyan);
  font-size: 14px;
  font-weight: 600;
}

.shots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.shots img,
.shots video {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: #0a101c;
  border-radius: 18px;
  border: 1px solid var(--line-strong);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h3 {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 4px;
}

.resource-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.resource-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 14px;
  background: var(--elev);
  transition: border-color 0.18s ease;
}

.resource-card:hover {
  border-color: var(--line-strong);
}

.resource-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 12px;
  background: #0a101c;
}

.resource-card h2 {
  font-size: 22px;
  margin: 0 0 8px;
  max-width: none;
}

.resource-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.resource-card time {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.article {
  max-width: 720px;
}

.article .lede {
  margin-bottom: 18px;
}

.article time {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 28px;
}

.article-hero {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--line-strong);
  margin: 0 0 32px;
  background: #0a101c;
}

.back-link {
  display: inline-block;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 22px;
}

.back-link:hover {
  color: var(--text);
}

@media (max-width: 900px) {
  .product-cards,
  .shots,
  .footer-grid,
  .resource-card {
    grid-template-columns: 1fr;
  }

  .site-hero {
    padding-top: 56px;
    max-width: none;
  }
}
