:root {
  --blue: #1267e5;
  --blue-dark: #0b4ead;
  --blue-soft: #eaf2ff;
  --ink: #101820;
  --text: #3f4954;
  --muted: #6f7983;
  --line: #dfe4e8;
  --surface: #f5f7f8;
  --white: #ffffff;
  --green: #14865f;
  --green-soft: #e8f6f0;
  --coral: #d94d38;
  --yellow: #f2c94c;
  --radius: 8px;
  --radius-small: 6px;
  --container: 1180px;
  --shadow-small: 0 10px 28px rgba(16, 24, 32, 0.08);
  --shadow-large: 0 28px 70px rgba(2, 10, 18, 0.22);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Noto Sans SC", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
select {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(18, 103, 229, 0.38);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 300;
  padding: 0.65rem 0.9rem;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius-small);
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.section {
  padding-block: 5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.4rem;
  height: 2px;
  flex: 0 0 auto;
  background: currentColor;
  content: "";
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2.75rem;
}

.section-heading h2,
.page-intro h1,
.about-layout h2,
.company-layout h2 {
  margin: 0;
  font-size: 2rem;
  font-weight: 740;
  line-height: 1.12;
  letter-spacing: 0;
}

.section-heading > p:last-child,
.page-intro-inner > p:last-child {
  margin: 1rem 0 0;
  color: var(--text);
  font-size: 1.05rem;
}

.heading-row {
  max-width: none;
}

.heading-row > p {
  max-width: 520px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.72rem 1.1rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.2;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  border-color: #b9c1c8;
  transform: translateY(-1px);
}

.button-primary {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.button-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.button-ghost {
  background: transparent;
}

.text-action {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--blue-dark);
  font-size: 0.92rem;
  font-weight: 750;
}

.text-action span {
  transition: transform 160ms ease;
}

.text-action:hover span {
  transform: translateX(3px);
}

.text-action.light {
  color: #8fc1ff;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.nav-wrap {
  display: flex;
  min-height: 4.5rem;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1;
}

.brand-mark {
  position: relative;
  display: inline-block;
  width: 1.9rem;
  height: 1.9rem;
  flex: 0 0 auto;
  overflow: hidden;
  background: var(--blue);
  border-radius: var(--radius-small);
}

.brand-mark span {
  position: absolute;
  left: 0.5rem;
  width: 1rem;
  height: 4px;
  background: var(--white);
  border-radius: 4px;
}

.brand-mark span:first-child {
  top: 0.55rem;
}

.brand-mark span:last-child {
  top: 1rem;
  width: 0.67rem;
}

.nav-toggle {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  place-items: center;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 160ms ease;
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before {
  position: absolute;
  top: -5px;
}

.nav-toggle-lines::after {
  position: absolute;
  top: 5px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-nav {
  position: fixed;
  inset: 4.5rem 0 0;
  display: none;
  padding: 1.25rem 1rem;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.site-nav.is-open {
  display: block;
}

.nav-list {
  display: flex;
  margin: 0;
  padding: 0;
  flex-direction: column;
  gap: 0.2rem;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.8rem;
  color: var(--text);
  border-radius: var(--radius-small);
  font-size: 0.94rem;
  font-weight: 650;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--blue-dark);
  background: var(--blue-soft);
}

.language-switch {
  display: inline-flex;
  min-height: 2.35rem;
  align-items: center;
  margin-top: 1rem;
  padding: 3px;
  gap: 2px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
}

.language-switch a,
.language-switch span {
  display: inline-flex;
  min-width: 2.8rem;
  min-height: 1.75rem;
  align-items: center;
  justify-content: center;
  padding-inline: 0.45rem;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
}

.language-switch span {
  background: var(--white);
  box-shadow: 0 1px 3px rgba(16, 24, 32, 0.12);
}

.language-switch a {
  color: var(--muted);
}

.language-switch a:hover {
  color: var(--blue-dark);
}

/* Home hero */
.home-hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  color: var(--white);
  background: #101820;
}

.home-hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(16, 24, 32, 0.48);
  content: "";
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 680px;
  align-items: center;
  padding-block: 4.5rem;
}

.hero-copy {
  max-width: 640px;
}

.home-hero .eyebrow {
  color: #8fc1ff;
}

.hero-copy h1 {
  max-width: 620px;
  margin: 0;
  font-size: 3.25rem;
  font-weight: 780;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 1.5rem 0 2rem;
  color: #d2d9df;
  font-size: 1.12rem;
}

.home-hero .button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.home-hero .button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
}

.hero-facts {
  display: flex;
  margin-top: 2.25rem;
  flex-wrap: wrap;
  gap: 0.55rem 1.35rem;
  color: #aeb8c1;
  font-size: 0.78rem;
  font-weight: 650;
}

.hero-facts span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-facts span::before {
  width: 5px;
  height: 5px;
  background: var(--green);
  border-radius: 50%;
  content: "";
}

.hero-media {
  position: absolute;
  inset: 0;
  opacity: 0.42;
}

.hero-shot {
  position: absolute;
  width: 220px;
  height: auto;
  max-width: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow-large);
}

.hero-shot-one {
  right: 2%;
  bottom: -5rem;
}

.hero-shot-two {
  right: 26%;
  top: 3rem;
}

.hero-shot-three {
  right: -5rem;
  top: 5rem;
}

/* Product index */
.products-section {
  border-bottom: 1px solid var(--line);
}

.product-grid {
  display: grid;
  gap: 1rem;
}

.product-card {
  display: flex;
  min-height: 100%;
  padding: 1.5rem;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-card:hover {
  border-color: #bfc7ce;
  box-shadow: var(--shadow-small);
  transform: translateY(-3px);
}

.product-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.app-icon {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.availability {
  display: inline-flex;
  min-height: 1.65rem;
  align-items: center;
  padding-inline: 0.55rem;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 750;
}

.product-category {
  margin: 1.4rem 0 0.35rem;
  color: var(--blue-dark) !important;
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.2;
}

.product-card > p:not(.product-category) {
  margin: 0.75rem 0 1.4rem;
  color: var(--text);
}

.tag-list {
  display: flex;
  margin: 0 0 1.75rem;
  padding: 0;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
}

.tag-list li {
  padding: 0.24rem 0.5rem;
  color: #56616c;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 0.74rem;
  font-weight: 650;
}

.product-card .text-action {
  margin-top: auto;
}

.principles {
  background: var(--surface);
}

.principle-grid {
  display: grid;
  gap: 2.25rem;
}

.principle-grid article {
  padding-top: 1.35rem;
  border-top: 1px solid #cfd6dc;
}

.principle-grid span,
.support-notes article > span {
  color: var(--blue-dark);
  font-size: 0.75rem;
  font-weight: 800;
}

.principle-grid h3,
.support-notes h3 {
  margin: 1.6rem 0 0.5rem;
  font-size: 1.2rem;
}

.principle-grid p,
.support-notes p {
  margin: 0;
  color: var(--text);
}

.company-band {
  padding-block: 4rem;
  color: var(--white);
  background: #16232b;
}

.company-band .eyebrow {
  color: #68d0a9;
}

.company-layout {
  display: grid;
  gap: 2rem;
}

.company-layout h2 {
  max-width: 580px;
}

.company-layout > div:last-child > p {
  max-width: 560px;
  margin: 0 0 1rem;
  color: #c2cbd1;
}

/* Product details */
.product-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: var(--white);
  background: #101820;
}

.product-hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(16, 24, 32, 0.62);
  content: "";
}

.product-backdrop {
  position: absolute;
  top: -15%;
  right: -3%;
  width: min(46vw, 540px);
  height: auto;
  opacity: 0.82;
}

.product-hero-inner {
  position: relative;
  z-index: 2;
  padding-block: 1.3rem 4.5rem;
}

.breadcrumb {
  display: flex;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  gap: 0.4rem 0.65rem;
  color: #aeb8c1;
  font-size: 0.78rem;
}

.breadcrumb a:hover {
  color: var(--white);
}

.product-identity {
  display: grid;
  max-width: 760px;
  gap: 1.5rem;
}

.product-hero-icon {
  width: 6rem;
  height: 6rem;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
}

.product-hero .eyebrow {
  margin-bottom: 0.75rem;
  color: #8fc1ff;
}

.product-identity h1 {
  margin: 0;
  font-size: 3.3rem;
  line-height: 1;
}

.product-tagline {
  max-width: 680px;
  margin: 1rem 0 0;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 650;
}

.product-description {
  max-width: 660px;
  margin: 1rem 0 1.7rem;
  color: #c9d1d7;
}

.product-hero .button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
}

.package-name {
  margin: 1rem 0 0;
  color: #98a5af;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.75rem;
  overflow-wrap: anywhere;
}

.screenshots-section {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.screenshot-strip {
  display: grid;
  grid-auto-columns: minmax(230px, 300px);
  grid-auto-flow: column;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.25rem 0.25rem 1rem;
  scroll-snap-type: x mandatory;
  scrollbar-color: #b9c2ca transparent;
}

.shot-button {
  min-width: 0;
  padding: 0;
  overflow: hidden;
  background: #111820;
  border: 1px solid #cfd6dc;
  border-radius: var(--radius);
  cursor: zoom-in;
  scroll-snap-align: start;
}

.shot-button img {
  width: 100%;
  aspect-ratio: 592 / 1052;
  object-fit: cover;
  transition: transform 220ms ease;
}

.shot-button:hover img {
  transform: scale(1.015);
}

.feature-section {
  color: var(--white);
  background: #16232b;
}

.feature-section .eyebrow {
  color: #68d0a9;
}

.feature-grid {
  display: grid;
  gap: 1px;
  background: #344149;
  border: 1px solid #344149;
}

.feature-item {
  padding: 1.5rem;
  background: #16232b;
}

.feature-item > span {
  color: #68d0a9;
  font-size: 0.75rem;
  font-weight: 800;
}

.feature-item h3 {
  margin: 2.5rem 0 0.55rem;
  font-size: 1.15rem;
}

.feature-item p {
  margin: 0;
  color: #bfc9d0;
}

.faq-layout {
  display: grid;
  gap: 1rem;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  padding: 1.2rem 2.5rem 1.2rem 0;
  font-weight: 700;
  cursor: pointer;
}

.faq-list details p {
  max-width: 720px;
  margin: -0.4rem 0 1.3rem;
  color: var(--text);
}

.related-section {
  background: var(--surface);
}

.related-grid {
  display: grid;
  gap: 0.75rem;
}

.related-product {
  display: grid;
  min-height: 5.2rem;
  align-items: center;
  padding: 0.75rem;
  grid-template-columns: 3.5rem minmax(0, 1fr) auto;
  gap: 0.9rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.related-product:hover {
  border-color: #b9c2ca;
}

.related-product img {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: cover;
  border-radius: var(--radius-small);
}

.related-product strong,
.related-product small {
  display: block;
}

.related-product small {
  margin-top: 0.1rem;
  color: var(--muted);
}

.image-dialog {
  width: min(calc(100% - 2rem), 700px);
  max-height: calc(100svh - 2rem);
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
}

.image-dialog::backdrop {
  background: rgba(4, 10, 16, 0.86);
}

.image-dialog img {
  width: auto;
  max-width: 100%;
  max-height: calc(100svh - 2rem);
  margin-inline: auto;
  border-radius: var(--radius);
}

.dialog-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  place-items: center;
  color: var(--white);
  background: rgba(16, 24, 32, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Inner pages */
.page-main {
  min-height: 60vh;
}

.page-intro {
  padding-block: 5rem 3.5rem;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.page-intro-inner {
  max-width: 800px;
}

.page-intro h1 {
  font-size: 2.55rem;
}

.about-layout,
.support-layout,
.legal-layout {
  display: grid;
  gap: 2.5rem;
}

.about-layout > div:first-child {
  max-width: 520px;
}

.prose {
  max-width: 760px;
}

.prose p,
.prose li {
  color: var(--text);
}

.prose p {
  margin: 0 0 1rem;
}

.prose a {
  color: var(--blue-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.identity-list {
  margin: 0;
}

.identity-list div {
  display: grid;
  padding-block: 0.6rem;
  grid-template-columns: 7rem minmax(0, 1fr);
  gap: 1rem;
  border-bottom: 1px solid #35454f;
}

.identity-list dt {
  color: #98a5af;
}

.identity-list dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.contact-panel {
  align-self: start;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-panel h2 {
  margin: 0;
  font-size: 1.55rem;
}

.field-group {
  display: grid;
  margin-block: 1.75rem 1rem;
  gap: 0.4rem;
}

.field-group label {
  font-size: 0.82rem;
  font-weight: 700;
}

.field-group select {
  width: 100%;
  min-height: 3rem;
  padding-inline: 0.75rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cbd2d8;
  border-radius: var(--radius-small);
}

.support-email {
  width: 100%;
}

.contact-address {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  overflow-wrap: anywhere;
}

.support-notes {
  display: grid;
  gap: 1.75rem;
}

.support-notes article {
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.support-notes h3 {
  margin-top: 1rem;
}

.legal-nav {
  align-self: start;
  padding: 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.legal-nav strong,
.legal-nav a {
  display: block;
}

.legal-nav strong {
  margin-bottom: 0.6rem;
  font-size: 0.84rem;
}

.legal-nav a {
  padding-block: 0.3rem;
  color: var(--text);
  font-size: 0.87rem;
}

.legal-nav a:hover {
  color: var(--blue-dark);
}

.legal-copy section + section {
  margin-top: 3rem;
}

.legal-copy h2 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
}

.not-found {
  display: grid;
  min-height: calc(100svh - 4.5rem);
  place-items: center;
  padding-block: 4rem;
  text-align: center;
}

.not-found-code {
  display: block;
  margin-bottom: 1rem;
  color: var(--coral);
  font-size: 0.9rem;
  font-weight: 800;
}

.not-found h1 {
  margin: 0;
  font-size: 3.3rem;
  line-height: 1;
}

.not-found p {
  margin: 1rem 0 1.75rem;
  color: var(--text);
}

.not-found .button-row {
  justify-content: center;
}

/* Footer */
.site-footer {
  padding-block: 3.5rem 2rem;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-brand p {
  max-width: 430px;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 0.75rem 1.4rem;
  list-style: none;
}

.footer-links a {
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 650;
}

.footer-links a:hover {
  color: var(--blue-dark);
}

.footer-bottom {
  display: flex;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
}

@media (min-width: 700px) {
  .container {
    width: min(calc(100% - 3rem), var(--container));
  }

  .section {
    padding-block: 6.5rem;
  }

  .section-heading h2,
  .about-layout h2,
  .company-layout h2 {
    font-size: 2.75rem;
  }

  .heading-row {
    display: grid;
    align-items: end;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.65fr);
    gap: 3rem;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    padding: 0;
    gap: 0.8rem;
    background: transparent;
    border: 0;
  }

  .nav-list {
    flex-direction: row;
    align-items: center;
  }

  .nav-link {
    padding: 0.48rem 0.72rem;
  }

  .language-switch {
    margin-top: 0;
  }

  .home-hero,
  .hero-inner {
    min-height: 650px;
  }

  .hero-copy h1 {
    font-size: 4.5rem;
  }

  .hero-media {
    opacity: 0.72;
  }

  .home-hero::after {
    right: 34%;
    background: rgba(16, 24, 32, 0.88);
  }

  .hero-shot {
    width: 260px;
  }

  .hero-shot-one {
    right: 3%;
  }

  .hero-shot-two {
    right: 24%;
    top: 2.5rem;
  }

  .hero-shot-three {
    right: -6rem;
    top: 3rem;
  }

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

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

  .company-layout,
  .about-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    gap: 5rem;
  }

  .product-hero-inner {
    padding-bottom: 5.5rem;
  }

  .product-identity {
    grid-template-columns: 7.5rem minmax(0, 1fr);
    gap: 2rem;
  }

  .product-hero-icon {
    width: 7.5rem;
    height: 7.5rem;
  }

  .product-identity h1 {
    font-size: 4.5rem;
  }

  .screenshot-strip {
    grid-auto-columns: minmax(250px, 320px);
  }

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

  .feature-item {
    min-height: 270px;
    padding: 2rem;
  }

  .faq-layout {
    grid-template-columns: minmax(230px, 0.65fr) minmax(0, 1.35fr);
    gap: 5rem;
  }

  .support-layout {
    grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
    gap: 5rem;
  }

  .legal-layout {
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 5rem;
  }

  .legal-nav {
    position: sticky;
    top: 6rem;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
  }
}

@media (min-width: 1040px) {
  .home-hero,
  .hero-inner {
    height: min(760px, calc(100svh - 4.5rem));
    min-height: 650px;
  }

  .hero-copy h1 {
    font-size: 5rem;
  }

  .hero-shot {
    width: 300px;
  }

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

  .product-card {
    padding: 1.75rem;
  }

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

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
