:root {
  --ink: #07182c;
  --ink-soft: #3d4b5c;
  --navy: #061a31;
  --navy-2: #0b2a4b;
  --blue: #0877bd;
  --blue-bright: #18a4e1;
  --cyan: #8ee3ff;
  --sky: #e9f7fd;
  --paper: #f7f8f8;
  --white: #fff;
  --line: rgba(7, 24, 44, 0.12);
  --shadow: 0 24px 70px rgba(4, 28, 52, 0.12);
  --radius: 26px;
  --serif: "Songti SC", "STSong", "Times New Roman", serif;
  --sans: "Inter", "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

:focus-visible {
  outline: 3px solid rgba(24, 164, 225, 0.5);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 118px 0;
}

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

.section-dark {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 20%, rgba(24, 164, 225, 0.18), transparent 28%),
    radial-gradient(circle at 90% 80%, rgba(142, 227, 255, 0.08), transparent 30%),
    var(--navy);
}

.section-dark::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.24;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.2em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 1px;
  background: currentColor;
  content: "";
}

.section-dark .eyebrow,
.hero .eyebrow {
  color: var(--cyan);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  gap: 70px;
  align-items: end;
  margin-bottom: 54px;
}

.section-heading h2,
.split-copy h2,
.contact-copy h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.section-heading > p,
.split-copy > p,
.contact-copy > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.section-dark .section-heading > p,
.section-dark .split-copy > p {
  color: rgba(255,255,255,0.67);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
  transition: background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.site-header.is-scrolled,
.site-header.nav-open {
  color: var(--ink);
  background: rgba(255,255,255,0.95);
  box-shadow: 0 12px 35px rgba(4, 29, 54, 0.08);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  min-width: 205px;
  align-items: center;
  gap: 13px;
}

.brand-logo {
  width: 116px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.45;
}

.brand-text small {
  opacity: 0.66;
  font-size: 9px;
  font-weight: 550;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 31px;
}

.nav-links a {
  position: relative;
  font-size: 14px;
  font-weight: 620;
}

.nav-links a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 999px;
}

.site-header.is-scrolled .nav-cta,
.site-header.nav-open .nav-cta {
  border-color: rgba(7,24,44,0.2);
  background: var(--ink);
  color: var(--white);
}

.lang-link {
  opacity: 0.7;
  font-size: 12px !important;
  letter-spacing: 0.08em;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.2s ease;
}

.hero {
  position: relative;
  display: flex;
  min-height: 840px;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 58%;
  animation: heroReveal 1.4s cubic-bezier(.2,.8,.2,1) both;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(3,18,34,0.94) 0%, rgba(3,18,34,0.68) 45%, rgba(3,18,34,0.2) 76%),
    linear-gradient(0deg, rgba(3,18,34,0.94) 0%, transparent 44%),
    linear-gradient(180deg, rgba(3,18,34,0.4) 0%, transparent 32%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(1180px, calc(100% - 48px));
  grid-template-columns: minmax(0, 1fr) 315px;
  gap: 64px;
  align-items: end;
  margin-inline: auto;
  padding: 178px 0 70px;
}

.hero-copy {
  min-width: 0;
  max-width: 860px;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(56px, 8.3vw, 112px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.hero h1 em {
  display: block;
  margin-top: 10px;
  color: var(--cyan);
  font-family: var(--sans);
  font-size: 0.22em;
  font-style: normal;
  font-weight: 620;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.module-title-line {
  display: block;
  white-space: nowrap;
}

.hero-lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255,255,255,0.78);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 18px 38px rgba(8,119,189,0.24);
}

.button-primary:hover {
  background: #096eae;
  box-shadow: 0 20px 45px rgba(8,119,189,0.34);
}

.button-ghost {
  border-color: rgba(255,255,255,0.46);
  color: var(--white);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(9px);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-line {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}

.button-outline {
  border-color: rgba(7,24,44,0.22);
  color: var(--ink);
  background: transparent;
}

.button-outline:hover {
  border-color: var(--blue);
  color: var(--blue-deep);
  background: var(--sky);
}

.button svg {
  width: 17px;
  height: 17px;
}

.hero-panel {
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 22px;
  background: rgba(6,26,49,0.45);
  backdrop-filter: blur(16px);
}

.hero-panel-row {
  padding: 19px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}

.hero-panel-row:last-child {
  border: 0;
}

.hero-panel-row span {
  display: block;
  color: rgba(255,255,255,0.52);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-panel-row strong {
  display: block;
  margin-top: 3px;
  font-size: 15px;
  font-weight: 620;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: 25px;
  bottom: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.56);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: rotate(90deg);
  transform-origin: right center;
}

.scroll-cue::after {
  width: 50px;
  height: 1px;
  background: rgba(255,255,255,0.5);
  content: "";
}

.trust-bar {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
  color: #526173;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trust-list li:last-child {
  border-right: 0;
}

.answer-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.answer-main {
  padding: 52px 58px;
}

.answer-main h2 {
  max-width: 740px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.answer-main > p:last-child {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.answer-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--navy);
  color: var(--white);
}

.fact {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: space-between;
  padding: 27px;
  border-right: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.fact:nth-child(2n) {
  border-right: 0;
}

.fact:nth-last-child(-n+2) {
  border-bottom: 0;
}

.fact span {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.fact strong {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 35px;
}

.filter-button {
  padding: 10px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.filter-button.is-active,
.filter-button:hover {
  border-color: var(--ink);
  color: var(--white);
  background: var(--ink);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}

.product-card {
  grid-column: span 4;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:nth-child(1),
.product-card:nth-child(5) {
  grid-column: span 8;
}

.product-card.is-hidden {
  display: none;
}

.product-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #eef1f2;
}

.product-card:nth-child(1) .product-image,
.product-card:nth-child(5) .product-image {
  aspect-ratio: 16 / 7.6;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(.2,.8,.2,1);
}

.product-card:hover .product-image img {
  transform: scale(1.045);
}

.product-code {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.product-body {
  padding: 24px 25px 26px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-body h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.22;
}

.product-body p {
  min-height: 52px;
  margin: 12px 0 21px;
  color: var(--ink-soft);
  font-size: 14px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
}

.text-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

/* “全部产品”使用品牌画册式拼版：两张横卡 + 竖卡 + 主卡 + 两张叠放卡。 */
.product-grid[data-layout="all"] {
  grid-template-rows: repeat(3, 270px);
}

.product-grid[data-layout="all"] .product-card {
  position: relative;
  min-height: 0;
  grid-column: auto;
  overflow: hidden;
  border: 0;
  background: var(--navy);
}

.product-grid[data-layout="all"] .product-card:nth-child(1) {
  grid-column: 1 / 7;
  grid-row: 1;
}

.product-grid[data-layout="all"] .product-card:nth-child(2) {
  grid-column: 7 / 13;
  grid-row: 1;
}

.product-grid[data-layout="all"] .product-card:nth-child(3) {
  grid-column: 1 / 4;
  grid-row: 2 / 4;
}

.product-grid[data-layout="all"] .product-card:nth-child(4) {
  grid-column: 4 / 10;
  grid-row: 2 / 4;
}

.product-grid[data-layout="all"] .product-card:nth-child(5) {
  grid-column: 10 / 13;
  grid-row: 2;
}

.product-grid[data-layout="all"] .product-card:nth-child(6) {
  grid-column: 10 / 13;
  grid-row: 3;
}

.product-grid[data-layout="all"] .product-image,
.product-grid[data-layout="all"] .product-card:nth-child(1) .product-image,
.product-grid[data-layout="all"] .product-card:nth-child(5) .product-image {
  position: absolute;
  inset: 0;
  height: 100%;
  aspect-ratio: auto;
}

.product-grid[data-layout="all"] .product-image::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent 26%, rgba(3,18,34,0.16) 48%, rgba(3,18,34,0.94) 100%);
}

.product-grid[data-layout="all"] .product-body {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 52px 24px 23px;
  color: var(--white);
  background: linear-gradient(180deg, transparent, rgba(3,18,34,0.38));
}

.product-grid[data-layout="all"] .product-meta {
  margin-bottom: 7px;
  color: var(--cyan);
  font-size: 9px;
}

.product-grid[data-layout="all"] .product-body h3 {
  color: var(--white);
  font-size: clamp(21px, 2.1vw, 30px);
}

.product-grid[data-layout="all"] .product-body p {
  display: -webkit-box;
  min-height: 0;
  margin: 8px 0 13px;
  overflow: hidden;
  color: rgba(255,255,255,0.68);
  font-size: 12px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-grid[data-layout="all"] .text-link {
  color: var(--white);
  font-size: 12px;
}

.product-grid[data-layout="all"] .product-card:nth-child(5) .product-body,
.product-grid[data-layout="all"] .product-card:nth-child(6) .product-body {
  padding: 42px 18px 17px;
}

.product-grid[data-layout="all"] .product-card:nth-child(5) .product-body h3,
.product-grid[data-layout="all"] .product-card:nth-child(6) .product-body h3 {
  font-size: 21px;
}

.product-grid[data-layout="all"] .product-card:nth-child(5) .product-body p,
.product-grid[data-layout="all"] .product-card:nth-child(6) .product-body p {
  display: none;
}

.product-grid[data-layout="all"] .catalog-detail-card {
  display: none;
}

.product-grid:not([data-layout="all"]) .product-card {
  grid-column: span 4;
}

.product-grid:not([data-layout="all"]) .product-card .product-image,
.product-grid:not([data-layout="all"]) .product-card:nth-child(1) .product-image,
.product-grid:not([data-layout="all"]) .product-card:nth-child(5) .product-image {
  aspect-ratio: 4 / 5;
}

.decision-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 80px;
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 120px;
}

.sticky-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.sticky-copy > p:last-of-type {
  margin: 25px 0 30px;
  color: rgba(255,255,255,0.67);
}

.decision-list {
  border-top: 1px solid rgba(255,255,255,0.18);
}

.decision-item {
  display: grid;
  grid-template-columns: 54px 1fr 34px;
  gap: 22px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}

.decision-number {
  color: var(--cyan);
  font-family: var(--serif);
  font-size: 17px;
}

.decision-item h3 {
  margin: 0 0 7px;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
}

.decision-item p {
  margin: 0;
  color: rgba(255,255,255,0.62);
  font-size: 14px;
}

.decision-arrow {
  color: var(--cyan);
  font-size: 22px;
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.application-card {
  position: relative;
  display: flex;
  min-height: 420px;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 22px;
  color: var(--white);
  background: var(--navy);
}

.application-background {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(.2,.8,.2,1);
}

.application-card:hover .application-background {
  transform: scale(1.035);
}

.application-card::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(3,18,34,0.04) 18%, rgba(3,18,34,0.18) 46%, rgba(3,18,34,0.93) 100%);
}

.application-icon {
  position: absolute;
  z-index: 2;
  top: 23px;
  left: 23px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.32);
  border-radius: 50%;
  color: var(--white);
  background: rgba(3,18,34,0.28);
  backdrop-filter: blur(10px);
}

.application-icon svg {
  width: 23px;
  height: 23px;
}

.application-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 9px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  text-shadow: 0 2px 18px rgba(3,18,34,0.3);
}

.application-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: rgba(255,255,255,0.76);
  font-size: 14px;
  text-shadow: 0 2px 14px rgba(3,18,34,0.36);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 26px;
}

.about-kicker {
  margin-bottom: 28px;
}

.about-hero {
  position: relative;
  min-height: 660px;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy);
}

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

.about-hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, rgba(3,18,34,0.96) 0%, rgba(3,18,34,0.78) 43%, rgba(3,18,34,0.12) 66%, rgba(3,18,34,0.02) 100%);
}

.story-copy.about-copy {
  position: relative;
  z-index: 2;
  width: 54%;
  min-height: 660px;
  margin-right: auto;
  margin-left: 0;
  padding: 54px 52px;
  border-left: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}

.story-image {
  min-height: 640px;
  overflow: hidden;
  border-radius: var(--radius);
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.story-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 52px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--blue);
}

.story-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.story-copy > div > p {
  margin: 23px 0 0;
  color: rgba(255,255,255,0.76);
  font-size: 16px;
}

html[lang="zh-CN"] .story-copy .module-title-line {
  font-size: clamp(23px, 2.5vw, 36px);
  white-space: nowrap;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
  border-top: 1px solid rgba(255,255,255,0.24);
  border-bottom: 1px solid rgba(255,255,255,0.24);
}

.about-facts > div {
  min-width: 0;
  padding: 19px 15px 20px 0;
  border-right: 1px solid rgba(255,255,255,0.2);
}

.about-facts > div:not(:first-child) {
  padding-left: 15px;
}

.about-facts > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.about-facts span,
.about-facts strong {
  display: block;
}

.about-facts span {
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-facts strong {
  color: var(--white);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
}

.story-note {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.7);
  font-size: 12px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-step {
  padding: 31px 29px 35px;
  border-right: 1px solid var(--line);
}

.process-step:last-child {
  border: 0;
}

.process-step span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.process-step h3 {
  margin: 28px 0 8px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
}

.process-step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.knowledge-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  gap: 20px;
}

.knowledge-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: space-between;
  padding: 31px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  transition: background 0.2s ease, transform 0.2s ease;
}

.knowledge-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-4px);
}

.knowledge-card:first-child {
  background: var(--white);
  color: var(--ink);
}

.knowledge-card .tag {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.knowledge-card:first-child .tag {
  color: var(--blue);
}

.knowledge-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
}

.knowledge-card p {
  margin: 15px 0 0;
  color: rgba(255,255,255,0.58);
  font-size: 13px;
}

.knowledge-card:first-child p {
  color: var(--ink-soft);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 90px;
  align-items: start;
}

.faq-intro {
  position: static;
}

.faq-intro h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.faq-intro p:last-child {
  margin: 23px 0 0;
  color: var(--ink-soft);
}

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

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

.faq-list summary {
  position: relative;
  padding: 26px 48px 26px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 26px;
  right: 4px;
  color: var(--blue);
  content: "+";
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 300;
  transition: transform 0.2s ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 700px;
  margin: -5px 0 28px;
  color: var(--ink-soft);
  font-size: 14px;
}

.stores-section {
  background: linear-gradient(180deg, #f4f8fb 0%, #edf4f8 100%);
}

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

.store-card {
  position: relative;
  display: flex;
  min-height: 250px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(7,24,44,0.1);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255,255,255,0.9);
  box-shadow: 0 18px 45px rgba(7,32,56,0.06);
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.store-card::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 94px;
  height: 94px;
  border-radius: 0 0 0 100%;
  background: linear-gradient(135deg, rgba(0,160,219,0.18), rgba(0,112,192,0.03));
  content: "";
  transition: transform 220ms ease;
}

.store-card:hover {
  border-color: var(--blue-deep);
  color: var(--white);
  background: var(--blue-deep);
  box-shadow: 0 24px 60px rgba(7,32,56,0.18);
  transform: translateY(-5px);
}

.store-card:hover::before {
  transform: scale(1.35);
}

.store-number,
.store-platform,
.store-link {
  position: relative;
  z-index: 1;
}

.store-number {
  color: rgba(7,24,44,0.24);
  font-family: var(--serif);
  font-size: 42px;
  line-height: 1;
  transition: color 220ms ease;
}

.store-platform {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  transition: color 220ms ease;
}

.store-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(20px, 1.55vw, 24px);
  font-weight: 720;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.store-name-local {
  position: relative;
  z-index: 1;
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
  transition: color 220ms ease;
}

.store-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 15px;
  border-top: 1px solid rgba(7,24,44,0.12);
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 750;
  transition: color 220ms ease, border-color 220ms ease;
}

.store-link span {
  font-size: 17px;
  transition: transform 220ms ease;
}

.store-card:hover .store-number,
.store-card:hover .store-name-local {
  color: rgba(255,255,255,0.65);
}

.store-card:hover .store-platform,
.store-card:hover .store-link {
  color: var(--cyan);
}

.store-card:hover .store-link {
  border-color: rgba(255,255,255,0.18);
}

.store-card:hover .store-link span {
  transform: translate(3px, -3px);
}

.contact-section {
  padding: 110px 0 0;
  background: var(--white);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  padding-bottom: 100px;
}

.contact-direct {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-direct .contact-item {
  display: block;
  padding: 13px 15px;
  border: 1px solid rgba(7,24,44,0.1);
  border-radius: 12px;
  color: var(--ink);
  background: var(--sky);
}

.contact-direct span,
.contact-direct strong {
  display: block;
}

.contact-direct span {
  margin-bottom: 3px;
  color: #69788a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-direct strong {
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 720;
  overflow-wrap: anywhere;
}

.inquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  color: #586577;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(7,24,44,0.23);
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  outline: 0;
}

.form-group input,
.form-group select {
  height: 48px;
}

.form-group textarea {
  min-height: 112px;
  padding: 13px 0;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 1px var(--blue);
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-consent {
  display: flex;
  grid-column: 1 / -1;
  align-items: flex-start;
  gap: 10px;
  color: #586577;
  font-size: 11px;
  line-height: 1.6;
  cursor: pointer;
}

.form-consent input {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  accent-color: var(--blue);
}

.inquiry-form[aria-busy="true"] .button[type="submit"],
.button[type="submit"]:disabled {
  opacity: 0.58;
  cursor: wait;
}

.form-actions {
  display: flex;
  grid-column: 1 / -1;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 9px;
}

.form-note {
  flex: 1 0 100%;
  min-width: 0;
  margin: 0;
  color: #6f7c8c;
  font-size: 11px;
}

.form-record-link {
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(0,112,192,0.28);
  text-underline-offset: 4px;
}

.form-record-link:hover {
  text-decoration-color: currentColor;
}

.form-status {
  display: none;
  grid-column: 1 / -1;
  padding: 12px 15px;
  border-radius: 12px;
  color: #0b5d84;
  background: var(--sky);
  font-size: 13px;
}

.form-status.is-visible {
  display: block;
}

.form-status[data-state="error"] {
  color: #8a2d25;
  background: #fff0ed;
}

.records-page {
  min-height: 100vh;
  color: var(--ink);
  background: #f4f7f9;
}

.records-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(7,24,44,0.08);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(18px);
}

.records-nav {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.records-nav .brand-text {
  color: var(--ink);
}

.records-nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.records-nav-actions a {
  color: var(--ink);
  font-size: 13px;
  font-weight: 720;
}

.records-nav-actions a:hover {
  color: var(--blue);
}

.records-logout {
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(7,24,44,0.16);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-size: 12px;
  font-weight: 720;
  cursor: pointer;
}

.records-logout:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.records-hero {
  padding: 110px 0 72px;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 20%, rgba(0,160,219,0.28), transparent 34%),
    linear-gradient(135deg, #061a31, #0a3657);
}

.records-hero .eyebrow {
  color: var(--cyan);
}

.records-hero h1 {
  max-width: 880px;
  margin: 18px 0 0;
  font-family: var(--serif);
  font-size: clamp(56px, 8vw, 104px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.records-hero > .container > p:not(.eyebrow) {
  max-width: 760px;
  margin: 30px 0 0;
  color: rgba(255,255,255,0.72);
  font-size: 16px;
}

.records-summary {
  display: flex;
  max-width: 900px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.18);
}

.records-summary strong {
  color: var(--white);
  font-size: 18px;
}

.records-summary span {
  color: rgba(255,255,255,0.58);
  font-size: 12px;
}

.records-content {
  min-height: 360px;
  padding: 52px 0 110px;
}

.records-login {
  min-height: 440px;
  padding: 64px 0 100px;
}

.records-login-card {
  width: min(100%, 520px);
  margin: 0 auto;
  padding: 36px;
  border: 1px solid rgba(7,24,44,0.1);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(7,32,56,0.08);
}

.records-login-card .eyebrow {
  color: var(--blue);
}

.records-login-card h2 {
  margin: 12px 0 0;
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.records-login-card > p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.7;
}

.records-login-form {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.records-login-form label {
  display: grid;
  gap: 8px;
  color: #657488;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.records-login-form input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(7,24,44,0.16);
  border-radius: 10px;
  color: var(--ink);
  background: #fbfcfd;
  font: inherit;
  font-size: 14px;
  letter-spacing: normal;
  text-transform: none;
}

.records-login-form input:focus-visible {
  border-color: var(--blue);
  outline: 3px solid rgba(0,119,190,0.13);
}

.records-login-form .records-action {
  justify-self: start;
  min-height: 46px;
  padding: 0 22px;
}

.records-login-notice {
  min-height: 22px;
  margin: 14px 0 0;
  color: #16623b;
  font-size: 12px;
}

.records-login-notice[data-state="error"] {
  color: #8a2d25;
}

.records-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  padding: 22px;
  border: 1px solid rgba(7,24,44,0.1);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(7,32,56,0.05);
}

.records-filter,
.records-bulk-actions {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.records-filter-field {
  display: grid;
  gap: 7px;
}

.records-filter-field label,
.record-list-field > span,
.record-status > span {
  color: #657488;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.records-filter-field input {
  min-width: 146px;
  height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(7,24,44,0.16);
  border-radius: 9px;
  color: var(--ink);
  background: #fbfcfd;
  font: inherit;
  font-size: 13px;
}

.records-filter-field input:focus-visible {
  border-color: var(--blue);
  outline: 3px solid rgba(0,119,190,0.13);
}

.records-filter-separator {
  align-self: flex-end;
  padding-bottom: 12px;
  color: var(--ink-soft);
  font-size: 12px;
}

.records-action {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(7,24,44,0.16);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-size: 12px;
  font-weight: 760;
  cursor: pointer;
  transition: 160ms ease;
}

.records-action:hover:not(:disabled) {
  border-color: var(--blue);
  color: var(--blue);
}

.records-action-primary {
  border-color: var(--navy);
  color: var(--white);
  background: var(--navy);
}

.records-action-primary:hover:not(:disabled) {
  border-color: var(--blue);
  color: var(--white);
  background: var(--blue);
}

.records-action-danger {
  border-color: rgba(152,44,37,0.24);
  color: #8a2d25;
  background: #fff8f7;
}

.records-action-danger:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.records-select-all {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 680;
  cursor: pointer;
}

.records-select-all input,
.record-select input {
  width: 17px;
  height: 17px;
  margin: 0;
  accent-color: var(--blue);
  cursor: pointer;
}

#records-selected-count {
  min-width: 74px;
  padding-bottom: 13px;
  color: var(--ink-soft);
  font-size: 11px;
  white-space: nowrap;
}

.records-notice {
  min-height: 22px;
  margin: 14px 4px 10px;
  color: #16623b;
  font-size: 12px;
}

.records-notice[data-state="error"] {
  color: #8a2d25;
}

.records-list {
  display: grid;
  gap: 12px;
}

.records-list-header,
.record-row {
  display: grid;
  grid-template-columns: 30px minmax(170px, 1.15fr) minmax(160px, 1fr) minmax(160px, 1fr) 130px 126px;
  gap: 20px;
  align-items: start;
}

.records-list-header {
  padding: 0 22px 2px;
  color: #657488;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.record-row {
  padding: 22px;
  border: 1px solid rgba(7,24,44,0.1);
  border-radius: 15px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(7,32,56,0.045);
  transition: border-color 160ms ease, background 160ms ease;
}

.record-row.is-contacted {
  border-color: rgba(24,130,78,0.24);
  background: linear-gradient(90deg, rgba(234,248,240,0.74), var(--white) 28%);
}

.record-select {
  display: flex;
  padding-top: 3px;
  justify-content: center;
}

.record-index {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.record-identity h2 {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.025em;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.record-identity p {
  margin: 7px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.record-product-group {
  display: grid;
  gap: 13px;
}

.record-list-field {
  min-width: 0;
}

.record-list-field > span,
.record-status > span {
  display: block;
  margin-bottom: 6px;
}

.record-list-field > strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
  font-weight: 580;
  line-height: 1.55;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.record-status-button {
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid rgba(7,24,44,0.14);
  border-radius: 999px;
  color: var(--ink-soft);
  background: #f8fafb;
  font: inherit;
  font-size: 11px;
  font-weight: 750;
  cursor: pointer;
}

.record-status-button.is-contacted {
  border-color: rgba(24,130,78,0.28);
  color: #16623b;
  background: #eaf8f0;
}

.record-message {
  grid-column: 2 / -1;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

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

.records-empty {
  padding: 70px 30px;
  border: 1px dashed rgba(7,24,44,0.18);
  border-radius: var(--radius);
  text-align: center;
  background: rgba(255,255,255,0.72);
}

.records-empty h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
}

.records-empty p {
  margin: 15px 0 26px;
  color: var(--ink-soft);
}

.records-footer {
  color: rgba(255,255,255,0.66);
  background: var(--navy);
}

.records-footer .container {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 11px;
}

@media (max-width: 820px) {
  .records-hero {
    padding: 82px 0 58px;
  }

  .records-summary,
  .records-footer .container {
    align-items: flex-start;
    flex-direction: column;
  }

  .records-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .records-filter,
  .records-bulk-actions {
    flex-wrap: wrap;
  }

  .records-list-header {
    display: none;
  }

  .record-row {
    grid-template-columns: 30px minmax(0, 1fr) minmax(0, 1fr);
  }

  .record-identity {
    grid-column: 2 / -1;
  }

  .record-product-group,
  .record-submitted {
    grid-column: 2;
  }

  .record-schedule,
  .record-status {
    grid-column: 3;
  }

  .record-message {
    grid-column: 2 / -1;
  }
}

@media (max-width: 560px) {
  .records-nav {
    min-height: 82px;
  }

  .records-nav-actions {
    gap: 14px;
  }

  .records-nav-actions a {
    font-size: 11px;
  }

  .records-hero h1 {
    font-size: clamp(48px, 16vw, 64px);
  }

  .records-content {
    padding-top: 30px;
  }

  .records-toolbar {
    padding: 18px;
  }

  .records-filter {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: end;
  }

  .records-filter-field input {
    width: 100%;
    min-width: 0;
  }

  .records-filter .records-action {
    grid-column: span 1;
  }

  .records-filter .records-action-primary {
    grid-column: 1 / 3;
  }

  .records-filter #records-reset-filter {
    grid-column: 3;
  }

  .records-bulk-actions {
    align-items: center;
  }

  #records-selected-count {
    padding-bottom: 0;
  }

  .record-row {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 18px 14px;
    padding: 19px;
  }

  .record-identity,
  .record-product-group,
  .record-schedule,
  .record-submitted,
  .record-status,
  .record-message {
    grid-column: 2;
  }

  .record-product-group {
    gap: 18px;
  }
}

.site-footer {
  color: var(--white);
  background: var(--navy);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 75px;
  padding: 68px 0 55px;
}

.footer-brand .brand {
  margin-bottom: 23px;
}

.footer-brand p {
  max-width: 470px;
  margin: 0;
  color: rgba(255,255,255,0.57);
  font-size: 13px;
}

.footer-column h3 {
  margin: 0 0 17px;
  color: var(--cyan);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  display: block;
  margin: 8px 0;
  color: rgba(255,255,255,0.66);
  font-size: 13px;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 21px 0 27px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.43);
  font-size: 10px;
  letter-spacing: 0.04em;
}

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(.2,.8,.2,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroReveal {
  from { opacity: 0.25; transform: scale(1.04); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 1040px) {
  .nav-links {
    gap: 19px;
  }

  .nav-links a {
    font-size: 12px;
  }

  .hero-content {
    grid-template-columns: 1fr 270px;
    gap: 35px;
  }

  .product-card,
  .product-card:nth-child(1),
  .product-card:nth-child(5) {
    grid-column: span 6;
  }

  .product-card .product-image,
  .product-card:nth-child(1) .product-image,
  .product-card:nth-child(5) .product-image {
    aspect-ratio: 4 / 3;
  }

  .product-grid:not([data-layout="all"]) .product-card,
  .product-grid:not([data-layout="all"]) .product-card:nth-child(1),
  .product-grid:not([data-layout="all"]) .product-card:nth-child(5) {
    grid-column: span 6;
  }

  .product-grid:not([data-layout="all"]) .product-card .product-image,
  .product-grid:not([data-layout="all"]) .product-card:nth-child(1) .product-image,
  .product-grid:not([data-layout="all"]) .product-card:nth-child(5) .product-image {
    aspect-ratio: 4 / 3;
  }

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

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

  .knowledge-card:first-child {
    grid-column: 1 / -1;
  }

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

@media (max-width: 820px) {
  .container {
    width: min(1180px, calc(100% - 34px));
  }

  .section {
    padding: 86px 0;
  }

  .section-heading,
  .decision-layout,
  .faq-layout,
  .contact-wrap,
  .story-grid,
  .answer-card {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 24px;
    margin-bottom: 38px;
  }

  .about-hero {
    min-height: 0;
    padding-top: 320px;
  }

  .about-background {
    height: 320px;
    object-position: center;
  }

  .about-hero::after {
    height: 320px;
    bottom: auto;
    background: linear-gradient(180deg, transparent 42%, rgba(3,18,34,0.92) 100%);
  }

  .story-copy.about-copy {
    width: 100%;
    min-height: 0;
    padding: 45px 38px 48px;
    border-top: 1px solid rgba(255,255,255,0.2);
    border-left: 0;
    background: var(--blue);
    backdrop-filter: none;
  }

  .product-grid[data-layout="all"] {
    grid-auto-rows: 410px;
    grid-template-rows: none;
  }

  .product-grid[data-layout="all"] .product-card,
  .product-grid[data-layout="all"] .product-card:nth-child(1),
  .product-grid[data-layout="all"] .product-card:nth-child(2),
  .product-grid[data-layout="all"] .product-card:nth-child(3),
  .product-grid[data-layout="all"] .product-card:nth-child(4),
  .product-grid[data-layout="all"] .product-card:nth-child(5),
  .product-grid[data-layout="all"] .product-card:nth-child(6) {
    grid-column: span 6;
    grid-row: auto;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 100px max(25px, calc((100vw - 1180px) / 2));
    color: var(--ink);
    background: var(--white);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .site-header.nav-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    font-family: var(--serif);
    font-size: 27px;
  }

  .nav-links .nav-cta {
    margin-top: 13px;
    font-family: var(--sans);
    font-size: 14px;
  }

  .site-header.nav-open .menu-toggle span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .site-header.nav-open .menu-toggle span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .hero {
    min-height: 780px;
  }

  .hero-content {
    width: min(1180px, calc(100% - 34px));
    grid-template-columns: 1fr;
    padding-bottom: 44px;
  }

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

  .hero-panel-row {
    border-right: 1px solid rgba(255,255,255,0.14);
    border-bottom: 0;
  }

  .hero-panel-row:last-child {
    border-right: 0;
  }

  .scroll-cue {
    display: none;
  }

  .trust-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-list li {
    min-height: 70px;
    border-bottom: 1px solid var(--line);
  }

  .trust-list li:nth-child(2n) {
    border-right: 0;
  }

  .trust-list li:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }

  .answer-facts {
    min-height: 300px;
  }

  .sticky-copy,
  .faq-intro {
    position: static;
  }

  .decision-layout,
  .faq-layout {
    gap: 45px;
  }

  .story-image {
    min-height: 460px;
  }

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

  .process-step:nth-child(2) {
    border-right: 0;
  }

  .process-step:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .contact-wrap {
    gap: 50px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(1180px, calc(100% - 28px));
  }

  .brand {
    min-width: auto;
  }

  .brand-text {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-media img {
    object-position: 61% 50%;
  }

  .hero-content {
    width: calc(100% - 28px);
    padding-top: 145px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(44px, 13.8vw, 54px);
    overflow-wrap: anywhere;
  }

  .hero h1 em {
    font-size: 0.2em;
    letter-spacing: 0.08em;
    overflow-wrap: anywhere;
  }

  .hero .eyebrow {
    max-width: 100%;
    letter-spacing: 0.11em;
    overflow-wrap: anywhere;
  }

  .section-heading h2.module-title,
  .sticky-copy h2.module-title {
    font-size: clamp(30px, 9vw, 38px);
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-actions .button {
    width: 100%;
  }

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

  .hero-panel-row {
    padding: 12px 17px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.14);
  }

  .hero-panel-row:last-child {
    border-bottom: 0;
  }

  .answer-main {
    padding: 37px 27px;
  }

  .fact {
    min-height: 125px;
    padding: 20px;
  }

  .product-card,
  .product-card:nth-child(1),
  .product-card:nth-child(5) {
    grid-column: 1 / -1;
  }

  .product-grid:not([data-layout="all"]) .product-card,
  .product-grid:not([data-layout="all"]) .product-card:nth-child(1),
  .product-grid:not([data-layout="all"]) .product-card:nth-child(5) {
    grid-column: 1 / -1;
  }

  .product-grid[data-layout="all"] {
    grid-auto-rows: 430px;
  }

  .product-grid[data-layout="all"] .product-card,
  .product-grid[data-layout="all"] .product-card:nth-child(1),
  .product-grid[data-layout="all"] .product-card:nth-child(2),
  .product-grid[data-layout="all"] .product-card:nth-child(3),
  .product-grid[data-layout="all"] .product-card:nth-child(4),
  .product-grid[data-layout="all"] .product-card:nth-child(5),
  .product-grid[data-layout="all"] .product-card:nth-child(6) {
    grid-column: 1 / -1;
  }

  .product-grid[data-layout="all"] .product-card:nth-child(5) .product-body,
  .product-grid[data-layout="all"] .product-card:nth-child(6) .product-body {
    padding: 52px 24px 23px;
  }

  .product-grid[data-layout="all"] .product-card:nth-child(5) .product-body p,
  .product-grid[data-layout="all"] .product-card:nth-child(6) .product-body p {
    display: -webkit-box;
  }

  .application-grid,
  .knowledge-grid,
  .process-grid,
  .inquiry-form,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .knowledge-card:first-child,
  .form-group.full,
  .form-actions,
  .form-status,
  .footer-brand {
    grid-column: auto;
  }

  .story-copy {
    padding: 38px 29px;
  }

  .process-step {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-step:nth-child(2) {
    border-right: 0;
  }

  .process-step:last-child {
    border-bottom: 0;
  }

  .decision-item {
    grid-template-columns: 40px 1fr;
  }

  .decision-arrow {
    display: none;
  }

  .application-card {
    min-height: 360px;
  }

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

  .store-card {
    min-height: 210px;
  }

  .about-hero {
    padding-top: 230px;
  }

  .about-background,
  .about-hero::after {
    height: 230px;
  }

  .story-copy.about-copy {
    padding: 38px 28px 42px;
  }

  .story-copy .module-title-line {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .about-facts {
    grid-template-columns: 1fr;
  }

  .about-facts > div,
  .about-facts > div:not(:first-child) {
    padding: 15px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.18);
  }

  .about-facts > div:last-child {
    border-bottom: 0;
  }

  .footer-main {
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
