@font-face {
  font-family: 'Roboto';
  src: url('/fonts/Roboto-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('/fonts/Roboto-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('/fonts/Roboto-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --landing-section-gap: clamp(20px, 2.6svh, 28px);
  --landing-shot-height: clamp(200px, 56svh, 560px);
  --landing-shell-width: min(1680px, calc(100% - 40px));
  --landing-content-width: min(1120px, 100%);
  --landing-text: #0b0b0c;
  --landing-muted: rgba(11, 11, 12, 0.72);
  --landing-line: rgba(17, 17, 17, 0.18);
  --landing-line-strong: rgba(17, 17, 17, 0.28);
  --landing-fill: rgba(17, 17, 17, 0.04);
  --landing-fill-strong: rgba(17, 17, 17, 0.05);
  --landing-shadow: 0 24px 60px rgba(17, 17, 17, 0.06);
  --landing-radius: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body.landing-home,
body.landing-docs {
  margin: 0;
  background: #ffffff;
  color: var(--landing-text);
  font-family: 'Roboto', 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.landing-home a,
body.landing-docs a {
  color: inherit;
}

body.landing-home .site-shell,
body.landing-docs .site-shell {
  width: var(--landing-shell-width);
  margin: 0 auto;
  padding-bottom: 48px;
}

.landing-intro {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 0;
  margin-bottom: clamp(22px, 4svh, 46px);
  padding: clamp(8px, 2vw, 18px) 0 var(--landing-section-gap);
  text-align: center;
}

.landing-header-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  grid-template-areas: 'mark title toggle';
  align-items: center;
  gap: 16px;
}

.landing-mark {
  grid-area: mark;
  justify-self: start;
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--landing-text);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-align: left;
  text-transform: uppercase;
}

.landing-locale-toggle {
  grid-area: toggle;
  justify-self: end;
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 32px;
  padding: 0 12px;
  border: 1px solid var(--landing-line);
  border-radius: 999px;
  background: var(--landing-fill);
  color: var(--landing-text);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
}

.landing-locale-toggle:focus {
  outline: none;
}

.landing-locale-toggle:focus-visible {
  outline: 2px solid var(--landing-line-strong);
  outline-offset: 3px;
}

.landing-intro h1,
.landing-section h2,
.landing-footer-center {
  font-family: 'Roboto', 'Segoe UI', sans-serif;
  font-weight: 700;
}

.landing-intro h1 {
  grid-column: 1 / -1;
  grid-row: 1;
  justify-self: center;
  z-index: 0;
  width: auto;
  max-width: 100%;
  margin: 0;
  font-size: clamp(1rem, 4.6vw, 1.56rem);
  line-height: 1.08;
  text-align: center;
  white-space: nowrap;
}

.landing-hero-lead {
  display: grid;
  gap: clamp(10px, 1.45svh, 16px);
  width: min(1120px, 100%);
  margin: clamp(56px, 8svh, 88px) auto 0;
  color: rgba(11, 11, 12, 0.78);
  font-size: clamp(0.9rem, 1.1vw, 1.04rem);
  line-height: 1.54;
  text-align: left;
  text-wrap: pretty;
}

.landing-hero-lead p {
  margin: 0;
}

.landing-hero-lead p:first-child {
  color: var(--landing-text);
  font-weight: 500;
}

.landing-hero-lead-final {
  color: var(--landing-text);
  font-weight: 700;
  text-align: center;
}

.landing-hero-schema {
  grid-column: 1 / -1;
  width: 100%;
  margin: clamp(4px, 0.8svh, 10px) 0 clamp(6px, 1svh, 12px);
}

.landing-hero-schema img {
  display: block;
  width: 100%;
  height: auto;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.08);
}

.landing-site-header {
  padding-top: clamp(8px, 2vw, 18px);
}

.landing-header-bar-docs {
  padding: 0 0 10px;
}

.landing-mark-link {
  text-decoration: none;
}

.landing-shared-title {
  grid-area: title;
  justify-self: center;
  width: auto;
  max-width: 100%;
  margin: 0;
  color: var(--landing-text);
  font-family: 'Roboto', 'Segoe UI', sans-serif;
  font-size: clamp(1.06rem, 2.45vw, 2.5rem);
  font-weight: 700;
  line-height: 1.08;
  text-align: center;
  text-decoration: none;
  white-space: pre-line;
}

.landing-locale-toggle-static {
  cursor: default;
}

.page-main {
  width: var(--landing-content-width);
  margin: 0 auto;
  padding-top: 20px;
}

.page-hero {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: clamp(18px, 4vw, 34px) 0 clamp(24px, 4vw, 40px);
  text-align: center;
}

.section-kicker {
  margin: 0;
  color: var(--landing-text);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.page-title {
  margin: 14px 0 0;
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  line-height: 0.96;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.page-subtitle,
.page-meta,
.page-card p,
.page-list,
.contact-value,
.page-cta-copy p {
  color: var(--landing-muted);
  line-height: 1.62;
}

.page-subtitle {
  max-width: 64ch;
  margin: 18px auto 0;
  font-size: 1rem;
  text-wrap: pretty;
}

.page-meta {
  margin: 14px 0 0;
  font-size: 0.9rem;
}

.page-shortcuts {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.page-shortcuts a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--landing-line);
  border-radius: 999px;
  background: var(--landing-fill);
  color: var(--landing-text);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.page-grid,
.page-stack {
  display: grid;
  gap: 18px;
}

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

.page-stack {
  width: min(980px, 100%);
  margin: 0 auto;
}

.page-card {
  padding: 26px;
  border: 1px solid var(--landing-line);
  border-radius: var(--landing-radius);
  background: #ffffff;
  box-shadow: var(--landing-shadow);
}

.page-card-wide {
  grid-column: 1 / -1;
}

.page-section-anchor {
  scroll-margin-top: 96px;
}

.page-card h2,
.page-cta-copy h2 {
  margin: 0;
  color: var(--landing-text);
  font-size: clamp(1.12rem, 2vw, 1.7rem);
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.page-card p {
  margin: 12px 0 0;
}

.page-list {
  margin: 14px 0 0;
  padding-left: 20px;
}

.page-list li + li {
  margin-top: 10px;
}

.legal-copy {
  max-width: none;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

.contact-row {
  display: grid;
  gap: 6px;
}

.contact-label {
  color: var(--landing-text);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-value {
  font-size: 1rem;
}

.text-link {
  color: var(--landing-text);
  text-decoration-color: rgba(17, 17, 17, 0.4);
  text-underline-offset: 0.16em;
}

.page-card code {
  font-family: 'Roboto Mono', 'SFMono-Regular', Consolas, monospace;
  color: var(--landing-text);
  font-size: 0.92em;
}

.page-cta-block {
  width: var(--landing-content-width);
  margin: clamp(56px, 8vw, 88px) auto 0;
  padding-top: 26px;
  border-top: 1px solid #111111;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 18px;
}

.page-cta-copy p {
  margin: 10px 0 0;
}

.landing-main {
  padding-top: 0;
}

.landing-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100svh;
  padding: var(--landing-section-gap) 0 0;
  text-align: center;
  --section-shot-height: var(--landing-shot-height);
}

.landing-section + .landing-section {
  margin-top: 0;
}

.landing-section h2 {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto clamp(14px, 2.4svh, 22px);
  padding: 8px 14px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
  background: rgba(17, 17, 17, 0.035);
  font-size: clamp(1.05rem, 2.2vw, 1.85rem);
  line-height: 1.14;
  text-align: center;
}

.landing-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  gap: 12px;
  width: 100%;
}

.landing-gallery-shell {
  display: block;
  width: 100%;
}

.landing-gallery {
  display: flex;
  width: fit-content;
  max-width: 100%;
  gap: 18px;
  margin: 0 auto;
  justify-content: flex-start;
  align-items: center;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  padding: 0 0 8px;
  scroll-padding-inline: 0;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: #c3c3c3 #efefef;
}

.landing-gallery::-webkit-scrollbar {
  height: 10px;
}

.landing-gallery::-webkit-scrollbar-track {
  background: #efefef;
  border-radius: 999px;
}

.landing-gallery::-webkit-scrollbar-thumb {
  background: #c3c3c3;
  border-radius: 999px;
}

.landing-shot {
  display: block;
  flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  scroll-snap-align: start;
}

.landing-shot img {
  display: block;
  width: auto;
  height: var(--section-shot-height);
  max-width: none;
  border-radius: 0;
}

.landing-gallery-mobile .landing-shot img {
  border-radius: 18px;
}

.landing-gallery:not(.landing-gallery-mobile) .landing-shot img {
  border-radius: 10px;
}

.landing-gallery-description {
  margin: 0 0 clamp(20px, 3.4svh, 36px);
  width: 100%;
  max-width: 100%;
  color: rgba(11, 11, 12, 0.72);
  font-size: clamp(0.78rem, 1vw, 0.94rem);
  line-height: 1.5;
  text-align: left;
  text-wrap: pretty;
}

.landing-features-section {
  min-height: auto;
  padding-bottom: clamp(32px, 6svh, 72px);
}

.landing-features-description {
  width: min(920px, 100%);
  margin: 0 auto clamp(18px, 3svh, 28px);
  color: var(--landing-muted);
  font-size: clamp(0.84rem, 1vw, 0.98rem);
  line-height: 1.54;
  text-align: center;
  text-wrap: pretty;
}

.landing-features-table-wrap {
  width: min(1120px, 100%);
  margin: 0 auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow-x: visible;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  scrollbar-color: #c3c3c3 #efefef;
}

.landing-features-table-wrap::-webkit-scrollbar {
  height: 10px;
}

.landing-features-table-wrap::-webkit-scrollbar-track {
  background: #efefef;
  border-radius: 999px;
}

.landing-features-table-wrap::-webkit-scrollbar-thumb {
  background: #c3c3c3;
  border-radius: 999px;
}

.landing-features-table-wrap:focus-visible {
  outline: 2px solid var(--landing-line-strong);
  outline-offset: 4px;
}

.landing-features-table {
  --features-rowgroup-sticky-top: 45px;
  width: 100%;
  min-width: 720px;
  border-collapse: separate;
  border-spacing: 0;
  color: var(--landing-text);
  font-size: clamp(0.82rem, 0.95vw, 0.96rem);
  line-height: 1.34;
  text-align: left;
}

.landing-features-table th,
.landing-features-table td {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(35, 64, 22, 0.08);
}

.landing-features-table thead th {
  position: sticky;
  top: 0;
  z-index: 4;
  background: rgba(255, 255, 255, 0.96);
  color: rgba(32, 44, 26, 0.78);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.landing-features-table thead th:nth-child(2),
.landing-features-table tbody td:nth-child(2) {
  width: 172px;
  border-left: 0;
  border-right: 0;
  background: rgba(236, 248, 225, 0.86);
  text-align: center;
}

.landing-features-table thead th:nth-child(2) {
  color: var(--landing-text);
  border-radius: 16px 16px 0 0;
}

.landing-features-table tbody tr:last-child td:nth-child(2) {
  border-radius: 0 0 16px 16px;
}

.landing-features-table tbody th {
  font-weight: 500;
}

.landing-features-table tbody tr:not(.landing-feature-group-row):hover th,
.landing-features-table tbody tr:not(.landing-feature-group-row):hover td {
  background: rgba(143, 199, 42, 0.035);
}

.landing-features-table tbody tr:not(.landing-feature-group-row):hover td:nth-child(2) {
  background: rgba(229, 245, 213, 0.98);
}

.landing-feature-group-row th {
  position: sticky;
  top: var(--features-rowgroup-sticky-top);
  z-index: 3;
  padding: 20px 18px 10px;
  border-bottom: 1px solid rgba(35, 64, 22, 0.12);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 0 rgba(35, 64, 22, 0.12), 0 10px 18px rgba(255, 255, 255, 0.92);
  color: rgba(36, 52, 29, 0.58);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.landing-feature-group-row:first-child th {
  padding-top: 16px;
}

.landing-feature-dot {
  display: inline-flex;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #83c623;
  box-shadow: 0 0 0 5px rgba(131, 198, 35, 0.16);
}

.landing-inline-cta {
  color: var(--landing-text);
  font-weight: 700;
  text-decoration-color: currentColor;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

.landing-mobile-cta {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-bottom: clamp(20px, 3.4svh, 36px);
  text-decoration: none;
}

.landing-mobile-cta img {
  display: block;
  width: 180px;
  max-width: 100%;
  height: auto;
}

.landing-mobile-cta:focus-visible {
  outline: 2px solid rgba(17, 17, 17, 0.28);
  outline-offset: 4px;
  border-radius: 12px;
}

.landing-mobile-cta[hidden] {
  display: none;
}

.landing-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas: 'badge center links';
  align-items: center;
  gap: 20px;
  margin-top: clamp(56px, 9svh, 108px);
  padding-top: 26px;
  border-top: 1.5px solid #111111;
}

.landing-footer-badge {
  grid-area: badge;
  justify-self: start;
  text-decoration: none;
}

.landing-footer-badge img {
  display: block;
  width: clamp(140px, 12vw, 172px);
  height: auto;
}

.landing-footer-center {
  grid-area: center;
  justify-self: center;
  color: var(--landing-text);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.05em;
  text-decoration: none;
}

.landing-footer-links {
  grid-area: links;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
}

.landing-footer-links a {
  color: var(--landing-text);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

@media (hover: hover) and (pointer: fine) {
  .landing-locale-toggle:hover,
  .landing-footer-center:hover,
  .landing-footer-links a:hover {
    opacity: 0.64;
  }

  .button:hover,
  .page-shortcuts a:hover {
    transform: translateY(-1px);
  }

  .button:hover,
  .page-shortcuts a:hover {
    border-color: var(--landing-line-strong);
  }

  .button-ghost:hover,
  .page-shortcuts a:hover {
    background: var(--landing-fill-strong);
  }

  .button-primary:hover {
    background: #222222;
  }
}

@media (min-width: 901px) {
  .landing-gallery-shell {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
  }

  .landing-gallery-shell[data-desktop-nav-enabled='true'] > .landing-gallery {
    max-width: calc(100% - 116px);
    margin: 0;
  }

  .landing-gallery-nav {
    display: none;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--landing-line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--landing-text);
    box-shadow: 0 12px 28px rgba(17, 17, 17, 0.08);
    cursor: pointer;
    transition:
      transform 160ms ease,
      opacity 160ms ease,
      border-color 160ms ease,
      background 160ms ease,
      box-shadow 160ms ease;
  }

  .landing-gallery-shell[data-desktop-nav-enabled='true'] .landing-gallery-nav {
    display: inline-flex;
  }

  .landing-gallery-nav[disabled] {
    cursor: default;
    opacity: 0.32;
    box-shadow: none;
  }

  .landing-gallery-nav:focus-visible {
    outline: 2px solid var(--landing-line-strong);
    outline-offset: 3px;
  }

  .landing-gallery-nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.28rem;
    font-weight: 700;
    line-height: 1;
  }
}

@media (max-width: 900px) {
  :root {
    --landing-shot-height: clamp(176px, 50svh, 360px);
    --landing-shell-width: min(100%, calc(100% - 32px));
  }

  .landing-intro,
  .landing-site-header {
    padding-top: 4px;
  }

  .landing-intro {
    margin-bottom: clamp(18px, 3svh, 28px);
  }

  .landing-header-bar {
    width: 100%;
    align-items: center;
    gap: 8px;
  }

  .landing-mark {
    align-self: center;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
  }

  .landing-locale-toggle {
    min-width: 46px;
    height: 30px;
    padding: 0 10px;
    font-size: 0.68rem;
  }

  .landing-intro h1 {
    align-self: center;
    justify-self: center;
    width: max-content;
    max-width: min(232px, calc(100% - 180px));
    font-size: clamp(1.144rem, 4.81vw, 1.3rem);
    line-height: 1;
    white-space: pre-line;
  }

  .landing-gallery-description {
    font-size: 0.76rem;
    line-height: 1.45;
  }

  .landing-features-description {
    font-size: 0.78rem;
    text-align: left;
  }

  .landing-features-table-wrap {
    border-radius: 0;
    overflow-x: visible;
  }

  .landing-features-table {
    --features-rowgroup-sticky-top: 38px;
    min-width: 0;
    table-layout: fixed;
    font-size: 0.76rem;
    line-height: 1.45;
  }

  .landing-features-table th,
  .landing-features-table td {
    padding: 10px 8px;
  }

  .landing-features-table thead th:first-child,
  .landing-features-table tbody th {
    overflow-wrap: anywhere;
  }

  .landing-features-table thead th:nth-child(2),
  .landing-features-table tbody td:nth-child(2) {
    width: 54px;
    padding-right: 6px;
    padding-left: 6px;
  }

  .landing-feature-group-row th {
    padding: 16px 8px 8px;
    letter-spacing: 0.11em;
  }

  .landing-feature-dot {
    width: 9px;
    height: 9px;
    box-shadow: 0 0 0 4px rgba(131, 198, 35, 0.14);
  }

  .landing-hero-lead {
    width: min(100%, 720px);
    margin-top: 40px;
    gap: 10px;
    font-size: 0.94rem;
    line-height: 1.48;
  }

  .landing-hero-lead p:first-child {
    font-size: 1rem;
  }

  .landing-hero-schema img {
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .landing-shared-title {
    align-self: center;
    width: min(112px, 100%);
    font-size: clamp(0.88rem, 3.7vw, 1rem);
    line-height: 1;
    white-space: pre-line;
  }

  .page-main,
  .page-cta-block {
    width: 100%;
  }

  .page-title {
    max-width: 100%;
    font-size: clamp(1.7rem, 8.4vw, 2.4rem);
    line-height: 1;
    text-wrap: pretty;
  }

  .page-card {
    padding: 20px 18px;
  }

  .landing-footer {
    grid-template-columns: 1fr;
    grid-template-areas:
      'center'
      'links'
      'badge';
    justify-items: center;
    gap: 12px;
    text-align: center;
  }

  .landing-footer-badge {
    justify-self: center;
  }

  .landing-footer-badge img {
    width: 148px;
  }

  .landing-footer-links {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-self: center;
    gap: 14px;
    justify-content: center;
  }

  .landing-footer-links a {
    font-size: 0.78rem;
  }

  .page-cta-block,
  .landing-footer {
    grid-template-columns: 1fr;
    align-items: start;
    justify-items: center;
    text-align: center;
  }

  .page-shortcuts {
    justify-content: center;
  }
}

@media (min-width: 901px) and (hover: hover) and (pointer: fine) {
  .landing-gallery-nav:hover:not([disabled]) {
    transform: translateY(-1px);
    border-color: var(--landing-line-strong);
    background: #ffffff;
    box-shadow: 0 16px 32px rgba(17, 17, 17, 0.12);
  }
}

@media (max-width: 980px) {
  .page-grid {
    grid-template-columns: 1fr;
  }

  .page-card-wide {
    grid-column: auto;
  }
}

@media (min-width: 901px) {
  .landing-section + .landing-section {
    margin-top: var(--landing-section-gap);
  }

  .landing-intro h1 {
    font-size: clamp(1.06rem, 2.45vw, 2.5rem);
    white-space: nowrap;
  }
}

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

  .button,
  .page-shortcuts a,
  .landing-gallery-nav {
    transition: none;
  }
}
