:root {
  --ink: #1f2b32;
  --muted: #657178;
  --line: #dfe3df;
  --paper: #f7f8f6;
  --paper-2: #eef1ed;
  --nav: #1b2930;
  --nav-2: #263840;
  --gold: #bc914a;
  --gold-soft: #eee1c9;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(31, 43, 50, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 12px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(27, 41, 48, 0.96);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: block;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  color: var(--white);
}

.brand-mark svg {
  display: block;
  width: 100%;
  height: 100%;
}

.logo-field {
  fill: #ffffff;
  stroke: rgba(255, 255, 255, 0.55);
  stroke-width: 1.4;
}

.logo-route {
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-width: 2.8;
}

.logo-l {
  fill: none;
  stroke: var(--nav);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
}

.logo-spark {
  fill: var(--gold);
  stroke: #ffffff;
  stroke-linejoin: round;
  stroke-width: 1.1;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  line-height: 1.1;
}

.brand small {
  color: #c9d2d7;
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #dce5e8;
  font-size: 14px;
  font-weight: 700;
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.62fr);
  gap: clamp(24px, 3.6vw, 48px);
  min-height: min(700px, calc(100vh - 74px));
  padding: clamp(50px, 6.4vw, 76px) clamp(18px, 5vw, 72px);
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(15, 24, 29, 0.95), rgba(15, 24, 29, 0.83) 48%, rgba(15, 24, 29, 0.62)),
    url("assets/images/web-factory-workshop.png") center/cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(247, 248, 246, 0), var(--paper));
  pointer-events: none;
}

.product-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 0.8fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(56px, 7vw, 96px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--nav);
}

.product-page-hero > div {
  min-width: 0;
}

.product-page-hero h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(36px, 4.8vw, 62px);
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.product-page-hero p:not(.eyebrow) {
  max-width: 680px;
  color: #edf2f3;
  font-size: clamp(16px, 1.45vw, 19px);
  overflow-wrap: anywhere;
}

.product-page-hero img {
  width: 100%;
  min-height: 420px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.pet-page-hero {
  background: linear-gradient(120deg, #1b2930, #30454b);
}

.gift-page-hero {
  background: linear-gradient(120deg, #1b2930, #3d3d38);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(34px, 4.3vw, 58px);
  line-height: 1.05;
}

.hero-copy {
  max-width: 660px;
  color: #edf2f3;
  font-size: clamp(16px, 1.45vw, 19px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
}

.button.primary {
  color: var(--nav);
  background: var(--gold);
}

.button.primary:hover {
  background: #d4aa61;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.54);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.hero-signals span {
  max-width: 100%;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #eef3f4;
  background: rgba(255, 255, 255, 0.1);
  font-size: 13px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.hero-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  align-self: center;
  max-width: 500px;
  justify-self: end;
  width: 100%;
}

.showcase-window {
  position: relative;
  overflow: hidden;
  height: clamp(212px, 22vw, 268px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.showcase-window::before,
.showcase-window::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 86px;
  pointer-events: none;
}

.showcase-window::before {
  left: 0;
  background: linear-gradient(90deg, rgba(27, 41, 48, 0.96), rgba(27, 41, 48, 0));
}

.showcase-window::after {
  right: 0;
  background: linear-gradient(270deg, rgba(27, 41, 48, 0.96), rgba(27, 41, 48, 0));
}

.showcase-track {
  display: flex;
  width: max-content;
  padding: 18px 0;
  animation: productScroll 30s linear infinite;
  will-change: transform;
}

.showcase-window:hover .showcase-track {
  animation-play-state: paused;
}

.showcase-set {
  display: flex;
  flex: 0 0 auto;
  gap: 14px;
  padding-right: 14px;
}

.showcase-set img {
  flex: 0 0 clamp(220px, 21vw, 292px);
  width: clamp(220px, 21vw, 292px);
  height: clamp(174px, 18.5vw, 232px);
  object-fit: cover;
  border: 7px solid rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.showcase-caption {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #eef3f4;
  background: rgba(255, 255, 255, 0.09);
}

.showcase-caption strong {
  color: var(--gold);
  font-size: 13px;
  text-transform: uppercase;
}

.showcase-caption span {
  font-size: 14px;
}

@keyframes productScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.section {
  scroll-margin-top: 92px;
  padding: clamp(56px, 7vw, 92px) clamp(18px, 4vw, 56px);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

.core-lines {
  background: linear-gradient(180deg, #ffffff, var(--paper));
}

.core-lines .section-heading {
  max-width: 980px;
}

.core-lines .section-heading h2 {
  font-size: clamp(34px, 4.6vw, 56px);
}

.core-lines .section-heading p:last-child {
  max-width: 860px;
  font-size: 18px;
}

.core-lines .eyebrow {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--nav);
  background: var(--gold-soft);
}

.section-heading.compact {
  margin-bottom: 20px;
}

.section-heading h2,
.line-intro h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
}

.section-heading p,
.line-intro p,
.product-feature p,
.product-card p,
.scenario-grid p,
.support-list p,
.about-copy p {
  color: var(--muted);
}

.core-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.core-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.core-card.feature {
  grid-template-rows: auto 1fr;
}

.core-card:not(.feature),
.core-card.feature {
  grid-template-rows: auto 1fr;
}

.core-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.core-card > div {
  padding: clamp(24px, 4vw, 38px);
}

.core-card span,
.product-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.core-card h3,
.product-card h3,
.scenario-grid h3,
.support-list h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.2;
}

.core-card h3 {
  font-size: 28px;
}

.core-card a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--nav);
  font-weight: 800;
}

.page-layout {
  padding-top: 28px;
  background: var(--paper-2);
}

.about-page {
  padding-top: 0;
  background: var(--paper);
}

.about-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 0.8fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(56px, 7vw, 96px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: linear-gradient(120deg, #1b2930, #334348);
}

.about-page-hero h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(36px, 4.8vw, 62px);
  line-height: 1.05;
}

.about-page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: #edf2f3;
  font-size: clamp(16px, 1.35vw, 18px);
}

.about-page-hero img {
  width: 100%;
  min-height: 430px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 0.8fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: var(--white);
}

.about-split:nth-of-type(3) {
  background: var(--paper);
}

.about-split img {
  width: 100%;
  min-height: 420px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-section-copy h2,
.about-role h2,
.about-cta h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
}

.about-section-copy p,
.about-card-grid p,
.about-role p,
.about-cta p {
  color: var(--muted);
}

.about-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.about-proof-grid article,
.about-card-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.about-proof-grid article {
  padding: 18px;
}

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

.about-proof-grid strong {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 15px;
}

.about-proof-grid span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.about-work {
  background: var(--paper-2);
}

.about-work-feature {
  margin-bottom: 0;
}

.about-buyers {
  background: var(--white);
}

.about-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-card-grid article {
  padding: clamp(22px, 3vw, 30px);
  background: var(--paper);
}

.about-card-grid h3 {
  margin-bottom: 12px;
  font-size: 23px;
  line-height: 1.2;
}

.about-role {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: center;
  color: var(--white);
  background: var(--nav);
}

.about-role p {
  max-width: 720px;
  color: #cbd8dc;
  font-size: 18px;
}

.role-points {
  display: grid;
  gap: 12px;
}

.role-points span {
  display: block;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #edf2f3;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
}

.about-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
  background: var(--gold-soft);
}

.about-cta h2 {
  max-width: 900px;
}

.about-cta p {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 18px;
}

.about-cta .button {
  min-width: 220px;
}

.legal-page {
  background: var(--paper);
}

.legal-content {
  max-width: 920px;
  margin: 0 auto;
  color: var(--ink);
}

.legal-content h1 {
  margin-bottom: 18px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
}

.legal-content h2 {
  margin: 34px 0 12px;
  font-size: 24px;
  line-height: 1.2;
}

.legal-content p {
  color: var(--muted);
  font-size: 17px;
}

.legal-content a {
  color: var(--nav);
  font-weight: 800;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.program-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 16px 42px rgba(31, 43, 50, 0.08);
}

.program-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  transition: border-color 160ms ease, transform 160ms ease;
}

.program-card img {
  width: 100%;
  height: 198px;
  object-fit: cover;
}

.program-card span,
.program-card h3,
.program-card p {
  margin-left: 20px;
  margin-right: 20px;
}

.program-card span {
  margin-top: 20px;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.program-card h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.2;
}

.program-card p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.line-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.72fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
  margin-bottom: 30px;
}

.product-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.82fr);
  gap: 0;
  overflow: hidden;
  margin-bottom: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.product-feature img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.product-feature > div {
  padding: clamp(26px, 4vw, 42px);
}

.reverse-feature img {
  order: 2;
}

.reverse-feature > div {
  order: 1;
}

.product-feature h3 {
  margin-bottom: 14px;
  font-size: 28px;
  line-height: 1.15;
}

.product-feature ul {
  padding-left: 20px;
  color: var(--ink);
  font-weight: 700;
}

.product-grid,
.scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.product-card,
.scenario-grid article,
.support-list article,
.contact-info,
.inquiry-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.product-card,
.scenario-grid article {
  overflow: hidden;
}

.product-card img,
.scenario-grid img {
  width: 100%;
  height: 235px;
  object-fit: cover;
}

.product-card > span,
.product-card h3,
.product-card p,
.scenario-grid h3,
.scenario-grid p {
  margin-left: 20px;
  margin-right: 20px;
}

.product-card > span {
  margin-top: 20px;
}

.product-card p,
.scenario-grid p {
  margin-bottom: 22px;
}

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

.scenario-grid.support-grid article {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px 16px;
  align-items: start;
  padding: 18px;
  overflow: visible;
}

.scenario-grid.support-grid img {
  grid-row: 1 / span 2;
  width: 92px;
  height: 76px;
  border-radius: 6px;
  object-fit: cover;
}

.support-grid h3,
.support-grid p {
  margin-right: 0;
  margin-left: 0;
}

.support-grid h3 {
  margin-bottom: 0;
  font-size: 19px;
  line-height: 1.2;
}

.support-grid p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.55;
}

.pet-line {
  background: #ffffff;
}

.applications {
  background: var(--paper-2);
}

.more-services {
  background: var(--paper);
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 22px;
  align-items: stretch;
}

.support-layout > img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border-radius: 8px;
  object-fit: cover;
}

.support-list {
  display: grid;
  gap: 14px;
}

.support-list article {
  padding: 24px;
}

.services {
  color: var(--white);
  background: var(--nav);
}

.services .section-heading p,
.services .eyebrow {
  color: #d5c29b;
}

.services .section-heading h2 {
  color: var(--white);
}

.process-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -8px 0 26px;
}

.process-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #edf2f3;
  background: rgba(255, 255, 255, 0.07);
  font-size: 13px;
  font-weight: 800;
}

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

.process-card {
  display: grid;
  gap: 14px;
  min-height: 245px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.process-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.process-number {
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
}

.process-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(188, 145, 74, 0.38);
  border-radius: 8px;
  color: var(--gold);
  background: rgba(188, 145, 74, 0.11);
}

.process-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.process-card h3 {
  margin: 0;
  color: var(--white);
  font-size: 21px;
  line-height: 1.2;
}

.process-card p {
  margin: 0;
  color: #cbd8dc;
  font-size: 15px;
  line-height: 1.65;
}

.process-action {
  display: flex;
  margin-top: 28px;
}

.workflow ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow li {
  min-height: 118px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #edf2f3;
  font-weight: 800;
}

.workflow span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 14px;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.about-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
}

.about-actions {
  display: flex;
  margin-top: 28px;
}

.about-visual img {
  width: 100%;
  min-height: 420px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.contact {
  background: var(--paper-2);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.7fr);
  gap: 22px;
  align-items: start;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 4vw, 32px);
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
}

.inquiry-form label:nth-of-type(5),
.inquiry-form .button,
.form-note {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #cfd8d4;
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
  background: var(--white);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(188, 145, 74, 0.18);
  border-color: var(--gold);
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--gold);
  font-weight: 700;
}

.contact-info {
  display: grid;
  overflow: hidden;
}

.contact-info div {
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.contact-info div:last-child {
  border-bottom: 0;
}

.contact-info strong,
.contact-info span,
.contact-info a,
.contact-info small {
  display: block;
}

.contact-info a {
  color: var(--nav);
  font-weight: 800;
}

.contact-info small {
  margin-top: 8px;
  color: var(--muted);
}

.site-footer {
  padding: 48px clamp(18px, 4vw, 56px) 28px;
  color: #dbe7f0;
  background: var(--nav);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) repeat(3, minmax(150px, 0.65fr));
  gap: clamp(24px, 4vw, 46px);
  align-items: start;
}

.footer-brand p {
  max-width: 460px;
  margin: 18px 0 0;
  color: #aebfcd;
  font-size: 14px;
  line-height: 1.8;
}

.footer-column {
  display: grid;
  gap: 9px;
  align-content: start;
}

.footer-column h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 14px;
}

.site-footer a,
.footer-column span {
  color: #aebfcd;
  font-size: 14px;
  line-height: 1.55;
}

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

.footer-contact {
  gap: 12px;
}

.footer-contact-item {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.footer-contact-item span:last-child {
  max-width: 320px;
}

.footer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--gold);
}

.footer-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  align-items: center;
}

.footer-legal span {
  color: #8fa4b4;
  font-size: 13px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #8fa4b4;
  font-size: 13px;
}

.footer-bottom a {
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 1100px) {
  .site-nav {
    gap: 14px;
    font-size: 13px;
  }

  .hero,
  .product-page-hero,
  .about-page-hero,
  .about-split,
  .about-role,
  .about-cta,
  .core-grid,
  .core-card.feature,
  .product-feature,
  .line-intro,
  .support-layout,
  .about,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    max-width: none;
    justify-self: stretch;
  }

  .product-page-hero img {
    min-height: 320px;
  }

  .reverse-feature img,
  .reverse-feature > div {
    order: initial;
  }

  .showcase-window {
    height: 232px;
  }

  .product-grid,
  .product-grid.three,
  .scenario-grid,
  .process-grid,
  .about-card-grid,
  .program-grid,
  .workflow ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .about-cta {
    align-items: start;
  }

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

@media (max-width: 760px) {
  html,
  body,
  .page-layout,
  .section {
    max-width: 100%;
    overflow-x: hidden;
  }

  .section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .section > *,
  .contact-layout,
  .inquiry-form,
  .contact-info,
  .product-card,
  .scenario-grid article,
  .process-card {
    max-width: 100%;
    min-width: 0;
  }

  .site-header {
    min-height: 66px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    right: 18px;
    top: 66px;
    display: none;
    width: min(300px, calc(100vw - 36px));
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: var(--nav);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
    border-radius: 8px;
  }

  .site-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
    background-position: center;
  }

  .hero h1 {
    font-size: 34px;
    margin-bottom: 16px;
  }

  .product-page-hero h1 {
    max-width: 100%;
    font-size: 28px;
    line-height: 1.08;
  }

  .about-page-hero h1 {
    font-size: 34px;
  }

  .product-page-hero {
    padding: 48px 20px 56px;
    overflow: hidden;
  }

  .product-page-hero > div,
  .line-intro,
  .section-heading {
    max-width: 100%;
    min-width: 0;
  }

  .product-page-hero p:not(.eyebrow) {
    font-size: 16px;
  }

  .product-page-hero .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-signals span {
    display: block;
    white-space: normal;
    border-radius: 18px;
  }

  .about-page-hero {
    padding-top: 48px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions .button {
    min-width: min(220px, 100%);
  }

  .hero-showcase {
    max-width: calc(100vw - 36px);
  }

  .showcase-window {
    height: 204px;
  }

  .showcase-track {
    animation-duration: 26s;
  }

  .showcase-set img {
    flex-basis: 214px;
    width: 214px;
    height: 166px;
  }

  .product-grid,
  .product-grid.three,
  .scenario-grid,
  .process-grid,
  .about-proof-grid,
  .about-card-grid,
  .program-grid,
  .workflow ol,
  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .scenario-grid.support-grid article {
    grid-template-columns: 82px minmax(0, 1fr);
    padding: 16px;
  }

  .scenario-grid.support-grid img {
    width: 82px;
    height: 68px;
  }

  .process-card {
    min-height: auto;
  }

  .process-action .button {
    width: 100%;
  }

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

  .product-card img,
  .scenario-grid img,
  .program-card img {
    height: 220px;
  }

  .product-feature img,
  .support-layout > img,
  .about-page-hero img,
  .about-split img,
  .about-visual img {
    min-height: 280px;
  }

  .about-cta .button {
    width: 100%;
  }

  select {
    font-size: 14px;
  }

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

  .footer-main {
    display: grid;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-legal {
    justify-content: flex-start;
  }
}
