:root {
  color-scheme: light;
  --ink: #17191c;
  --muted: #626971;
  --quiet: #8a929a;
  --line: #d9dde1;
  --line-strong: #bfc5cb;
  --paper: #ffffff;
  --surface: #f5f7f8;
  --surface-strong: #edf1f3;
  --graphite: #202428;
  --accent: #d8a900;
  --accent-strong: #a97d00;
  --coral: #e66c57;
  --cyan: #1596b5;
  --success: #167a63;
  --danger: #b53b38;
  --focus: #0a73d9;
  --content-width: 1180px;
  --page-padding: 32px;
  --radius: 8px;
  --shadow: 0 22px 60px rgba(19, 24, 28, 0.14);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  font-synthesis: none;
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
a,
input,
select {
  letter-spacing: 0;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

button,
.button {
  font: inherit;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(10, 115, 217, 0.38);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

[data-language="ja"] {
  display: none !important;
}

html[data-active-language="ja"] [data-language="en"] {
  display: none !important;
}

html[data-active-language="ja"] [data-language="ja"] {
  display: revert !important;
}

html[data-active-language="ja"] .legal-layout[data-language="ja"] {
  display: grid !important;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: var(--paper);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 72px;
  border-bottom: 1px solid rgba(23, 25, 28, 0.1);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px) saturate(1.2);
}

.header-inner {
  width: min(100%, calc(var(--content-width) + (var(--page-padding) * 2)));
  min-height: 72px;
  margin: 0 auto;
  padding: 0 var(--page-padding);
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  color: var(--ink);
  font-size: 19px;
  font-weight: 760;
  text-decoration: none;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.site-nav a {
  position: relative;
  padding: 23px 0 20px;
  color: #41474d;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  height: 2px;
  background: transparent;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  background: var(--accent);
}

.language-switcher {
  display: inline-flex;
  flex: 0 1 176px;
  min-width: 128px;
  max-width: 176px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.language-switcher select {
  width: 100%;
  min-height: 32px;
  padding: 5px 8px;
  border: 0;
  border-radius: 5px;
  color: var(--ink);
  background: var(--paper);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 1px 5px rgba(23, 25, 28, 0.12);
}

.header-store {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  color: var(--paper);
  background: var(--ink);
  font-size: 13px;
  font-weight: 720;
  text-decoration: none;
}

.header-store:hover,
.button-primary:hover {
  background: #363b40;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 19px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  font-size: 15px;
  font-weight: 740;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: transform 150ms ease, background-color 150ms ease;
}

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

.button-primary {
  color: var(--paper);
  background: var(--ink);
}

.button-accent {
  border-color: var(--accent);
  color: var(--ink);
  background: #f4cc30;
}

.button-accent:hover {
  background: #e8bd18;
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.84);
}

.button-danger {
  border-color: var(--danger);
  color: var(--paper);
  background: var(--danger);
}

.hero {
  position: relative;
  isolation: isolate;
  height: calc(100svh - 132px);
  min-height: 590px;
  max-height: 730px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #f5f7f8;
}

.hero-media {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(255, 255, 255, 0.16);
  pointer-events: none;
}

.hero-inner {
  width: min(100%, calc(var(--content-width) + (var(--page-padding) * 2)));
  height: 100%;
  margin: 0 auto;
  padding: 76px var(--page-padding) 62px;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(575px, 52%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: #4b5258;
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 3px;
  background: var(--accent);
}

.hero h1 {
  margin: 0;
  color: #121416;
  font-size: 72px;
  font-weight: 820;
  line-height: 0.98;
}

.hero-tagline {
  margin: 24px 0 0;
  color: #22272b;
  font-size: 27px;
  font-weight: 760;
  line-height: 1.35;
}

.hero-description {
  max-width: 540px;
  margin: 18px 0 0;
  color: #4f565c;
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-note {
  margin: 15px 0 0;
  color: #6a7178;
  font-size: 12px;
}

.signal-band {
  color: var(--paper);
  background: var(--graphite);
}

.signal-inner {
  width: min(100%, calc(var(--content-width) + (var(--page-padding) * 2)));
  margin: 0 auto;
  padding: 22px var(--page-padding);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.signal-item {
  min-height: 56px;
  padding: 0 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.signal-item:first-child {
  padding-left: 0;
  border-left: 0;
}

.signal-item strong,
.signal-item span {
  display: block;
}

.signal-item strong {
  font-size: 15px;
}

.signal-item span {
  margin-top: 2px;
  color: #bbc2c8;
  font-size: 12px;
}

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

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

.section-dark {
  color: var(--paper);
  background: var(--graphite);
}

.section-inner {
  width: min(100%, calc(var(--content-width) + (var(--page-padding) * 2)));
  margin: 0 auto;
  padding: 104px var(--page-padding);
}

.section-compact .section-inner {
  padding-top: 76px;
  padding-bottom: 76px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 50px;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 790;
  text-transform: uppercase;
}

.section-dark .section-kicker {
  color: #f0c72d;
}

.section-heading h2,
.feature-copy h2,
.page-masthead h1 {
  margin: 0;
  font-size: 42px;
  font-weight: 810;
  line-height: 1.18;
}

.section-heading p,
.feature-copy > p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.section-dark .section-heading p,
.section-dark .feature-copy > p {
  color: #c0c7cd;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 80px;
  align-items: start;
}

.manifesto-statement {
  margin: 0;
  font-size: 34px;
  font-weight: 780;
  line-height: 1.45;
}

.manifesto-copy {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.9;
}

.manifesto-copy strong {
  color: var(--ink);
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.38fr) minmax(0, 0.62fr);
  gap: 58px;
  align-items: center;
}

.feature-layout-reverse {
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 0.38fr);
}

.feature-layout-reverse .feature-copy {
  order: 2;
}

.feature-layout-reverse .product-frame {
  order: 1;
}

.feature-index {
  display: inline-block;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--accent);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.feature-copy h2 {
  font-size: 36px;
}

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

.feature-points li {
  position: relative;
  padding: 15px 0 15px 25px;
  border-bottom: 1px solid var(--line);
  color: #343a40;
  font-size: 14px;
  font-weight: 620;
}

.feature-points li::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--cyan);
}

.product-frame {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.product-frame img {
  width: 100%;
  height: auto;
}

.frame-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  padding: 10px 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--paper);
  font-size: 12px;
}

.frame-caption strong {
  color: var(--ink);
}

.capability-table {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
}

.capability-item {
  min-height: 170px;
  padding: 30px;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.capability-item:nth-child(1) { box-shadow: inset 4px 0 0 var(--accent); }
.capability-item:nth-child(2) { box-shadow: inset 4px 0 0 var(--cyan); }
.capability-item:nth-child(3) { box-shadow: inset 4px 0 0 var(--coral); }
.capability-item:nth-child(4) { box-shadow: inset 4px 0 0 var(--success); }

.capability-item h3 {
  margin: 0;
  font-size: 20px;
}

.capability-item p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.trust-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 84px;
  align-items: start;
}

.trust-statement {
  margin: 0;
  color: #ffffff;
  font-size: 36px;
  font-weight: 790;
  line-height: 1.4;
}

.trust-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-list article {
  min-height: 150px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-list h3 {
  margin: 0;
  font-weight: 760;
  font-size: 16px;
}

.trust-list p {
  margin: 8px 0 0;
  color: #bfc7cd;
  font-size: 14px;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-strong);
}

.workflow-step {
  min-height: 210px;
  padding: 30px;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.workflow-step:first-child {
  border-left: 1px solid var(--line-strong);
}

.workflow-number {
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 800;
}

.workflow-step h3 {
  margin: 20px 0 0;
  font-size: 20px;
}

.workflow-step p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 14px;
}

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

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

.faq-list summary {
  position: relative;
  padding: 22px 52px 22px 0;
  font-size: 17px;
  font-weight: 720;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 17px;
  right: 4px;
  color: var(--muted);
  font-size: 25px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 880px;
  margin: -4px 0 23px;
  color: var(--muted);
}

.final-cta {
  position: relative;
  overflow: hidden;
  background: #f1f4f5;
}

.final-cta .section-inner {
  padding-top: 88px;
  padding-bottom: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
}

.final-cta h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.25;
}

.final-cta p {
  max-width: 650px;
  margin: 12px 0 0;
  color: var(--muted);
}

.site-footer {
  color: #dce1e5;
  background: #171a1d;
}

.footer-inner {
  width: min(100%, calc(var(--content-width) + (var(--page-padding) * 2)));
  margin: 0 auto;
  padding: 52px var(--page-padding) 32px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 54px;
  padding-bottom: 42px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 21px;
  font-weight: 780;
}

.footer-brand img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
}

.footer-about p {
  max-width: 430px;
  margin: 16px 0 0;
  color: #9fa8af;
  font-size: 13px;
}

.footer-nav h2 {
  margin: 0 0 12px;
  color: #8f989f;
  font-size: 12px;
  text-transform: uppercase;
}

.footer-nav a {
  display: block;
  margin-top: 9px;
  color: #e5e9ec;
  font-size: 14px;
  text-decoration: none;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #8f989f;
  font-size: 12px;
}

.page-masthead {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #f3f5f6;
}

.page-masthead-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  opacity: 0.42;
}

.page-masthead::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.46);
}

.page-masthead-inner {
  position: relative;
  z-index: 1;
  width: min(100%, calc(var(--content-width) + (var(--page-padding) * 2)));
  min-height: 410px;
  margin: 0 auto;
  padding: 78px var(--page-padding) 64px;
  display: flex;
  align-items: flex-end;
}

.page-masthead-copy {
  max-width: 690px;
}

.page-masthead h1 {
  font-size: 52px;
}

.page-masthead p {
  margin: 18px 0 0;
  color: #4d545a;
  font-size: 17px;
}

.breadcrumb {
  margin: 0 0 24px;
  color: #596067;
  font-size: 13px;
  font-weight: 680;
}

.breadcrumb a {
  text-decoration: none;
}

.support-intro {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.support-intro h2 {
  margin: 0;
  font-size: 32px;
}

.support-intro p {
  max-width: 730px;
  margin: 12px 0 0;
  color: var(--muted);
}

.support-address {
  margin: 8px 0 0;
  color: var(--ink);
  font-weight: 730;
  overflow-wrap: anywhere;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
}

.support-card {
  min-height: 230px;
  padding: 30px;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: var(--paper);
}

.support-card .card-index {
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 800;
}

.support-card h3 {
  margin: 14px 0 0;
  font-size: 21px;
}

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

.support-card a {
  display: inline-block;
  margin-top: 15px;
  color: #075f88;
  font-size: 14px;
  font-weight: 700;
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 68px;
  align-items: start;
}

.legal-language-notice {
  margin: 0 0 28px;
  padding: 14px 18px;
  border-left: 3px solid var(--accent);
  color: #4e565e;
  background: #fff9df;
  font-size: 14px;
}

.legal-nav {
  position: sticky;
  top: 104px;
  padding: 18px 0;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.legal-nav h2 {
  margin: 0 0 12px;
  font-size: 15px;
}

.legal-nav a {
  display: block;
  padding: 7px 0;
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
}

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

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

.legal-content > header {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line-strong);
}

.legal-content > header h2 {
  margin: 0;
  font-size: 34px;
}

.legal-content > header p {
  margin: 12px 0 0;
  color: var(--muted);
}

.legal-article {
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 100px;
}

.legal-article h3 {
  margin: 0;
  font-size: 21px;
}

.legal-article p,
.legal-article li {
  color: #50575d;
}

.legal-article p {
  margin: 12px 0 0;
}

.legal-article ul,
.legal-article ol {
  margin: 14px 0 0;
  padding-left: 1.4em;
}

.legal-article li + li {
  margin-top: 7px;
}

.legal-highlight {
  margin-top: 18px;
  padding: 18px 20px;
  border-left: 4px solid var(--accent);
  background: var(--surface);
}

.legal-highlight p:first-child {
  margin-top: 0;
}

.policy-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
}

.policy-summary div {
  min-height: 170px;
  padding: 26px;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.policy-summary strong,
.policy-summary span {
  display: block;
}

.policy-summary strong {
  font-size: 18px;
}

.policy-summary span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.contact-strip {
  padding: 30px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
}

.contact-strip h3 {
  margin: 0;
  font-size: 21px;
}

.contact-strip p {
  margin: 8px 0 0;
  color: var(--muted);
}

.contact-strip .button {
  margin-top: 18px;
}

.noscript-notice {
  padding: 10px var(--page-padding);
  color: #5b4100;
  background: #fff2bd;
  text-align: center;
  font-size: 13px;
}

@media (max-width: 1080px) {
  :root { --page-padding: 24px; }
  .site-nav { gap: 15px; }
  .header-store { display: none; }
  .hero h1 { font-size: 62px; }
  .hero-tagline { font-size: 24px; }
  .feature-layout,
  .feature-layout-reverse { grid-template-columns: 1fr; }
  .feature-layout-reverse .feature-copy,
  .feature-layout-reverse .product-frame { order: initial; }
  .feature-copy { max-width: 760px; }
  .product-frame { max-width: 920px; }
}

@media (max-width: 820px) {
  :root { --page-padding: 20px; }
  .site-header,
  .header-inner { min-height: 64px; }
  .header-inner { gap: 14px; }
  .brand span,
  .site-nav { display: none; }
  .language-switcher { margin-left: auto; }
  .hero {
    height: 78svh;
    min-height: 570px;
    max-height: 680px;
  }
  .hero-media {
    object-position: 58% center;
    opacity: 0.58;
  }
  .hero::after { background: rgba(255, 255, 255, 0.52); }
  .hero-inner {
    padding-top: 56px;
    padding-bottom: 46px;
    align-items: flex-end;
  }
  .hero-copy {
    width: 100%;
    max-width: 610px;
  }
  .hero h1 { font-size: 56px; }
  .hero-tagline { font-size: 23px; }
  .signal-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 0;
  }
  .signal-item:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }
  .section-inner {
    padding-top: 78px;
    padding-bottom: 78px;
  }
  .section-heading h2,
  .page-masthead h1 { font-size: 36px; }
  .manifesto-grid,
  .trust-layout,
  .support-intro,
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .manifesto-statement,
  .trust-statement { font-size: 29px; }
  .capability-table,
  .support-grid,
  .trust-list,
  .policy-summary,
  .workflow { grid-template-columns: 1fr; }
  .workflow-step { border-left: 1px solid var(--line-strong); }
  .final-cta .section-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
  .page-masthead,
  .page-masthead-inner { min-height: 350px; }
  .legal-nav { position: static; }
}

@media (max-width: 540px) {
  :root { --page-padding: 16px; }
  body { font-size: 15px; }
  .header-inner {
    padding-left: 14px;
    padding-right: 14px;
  }
  .brand img {
    width: 34px;
    height: 34px;
  }
  .language-switcher {
    flex-basis: 164px;
    min-width: 112px;
    max-width: 164px;
  }
  .language-switcher select {
    padding-left: 7px;
    padding-right: 5px;
  }
  .hero { min-height: 600px; }
  .hero-media { object-position: 63% center; }
  .hero-inner {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .hero h1 { font-size: 48px; }
  .hero-tagline { font-size: 21px; }
  .hero-description { font-size: 15px; }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .hero-actions .button { width: 100%; }
  .signal-item {
    padding-left: 14px;
    padding-right: 10px;
  }
  .signal-item strong { font-size: 13px; }
  .signal-item span { font-size: 11px; }
  .section-heading h2,
  .feature-copy h2,
  .page-masthead h1,
  .final-cta h2 { font-size: 31px; }
  .section-heading p,
  .feature-copy > p,
  .page-masthead p { font-size: 15px; }
  .section-inner {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .section-heading { margin-bottom: 34px; }
  .manifesto-statement,
  .trust-statement { font-size: 25px; }
  .manifesto-copy { font-size: 16px; }
  .capability-item,
  .support-card,
  .workflow-step {
    min-height: 0;
    padding: 24px 20px;
  }
  .trust-list article {
    min-height: 0;
    padding: 21px;
  }
  .frame-caption {
    align-items: flex-start;
    flex-direction: column;
  }
  .page-masthead,
  .page-masthead-inner { min-height: 320px; }
  .page-masthead-inner {
    padding-top: 54px;
    padding-bottom: 44px;
  }
  .support-intro .button { width: 100%; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-about { grid-column: auto; }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .button,
  .language-switcher,
  .legal-nav { display: none !important; }
  .page-masthead,
  .page-masthead-inner { min-height: auto; }
  .page-masthead-media,
  .page-masthead::after { display: none; }
  .section-inner,
  .page-masthead-inner {
    width: 100%;
    padding: 24px 0;
  }
  .legal-layout { display: block; }
}
