:root {
  --ink: #111827;
  --muted: #647084;
  --paper: #f7f3ea;
  --white: #ffffff;
  --line: rgba(17, 24, 39, 0.14);
  --dark: #101827;
  --cream: #f8f3e8;
  --gold: #c79a43;
  --theme: #174a5f;
  --theme-2: #c79a43;
  --theme-soft: #edf4f3;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, system-ui, sans-serif;
  line-height: 1.75;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(248, 243, 232, 0.18);
  background: rgba(16, 24, 39, 0.86);
  color: var(--cream);
  backdrop-filter: blur(18px);
}
.nav {
  width: min(1180px, calc(100% - 40px));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: 0; }
.brand-mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(248, 243, 232, 0.32);
  border-radius: 8px;
  font-size: 12px;
}
.nav-links { display: flex; align-items: center; gap: 22px; color: rgba(248, 243, 232, 0.78); font-size: 14px; }

.button, .button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 900;
  line-height: 1.3;
}
.button { background: var(--theme-2); color: #101827; box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18); }
.button-secondary { border-color: rgba(248, 243, 232, 0.34); color: var(--cream); background: rgba(248, 243, 232, 0.08); }
.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

.eyebrow {
  color: var(--theme-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
h1, h2, h3 { margin: 0; letter-spacing: 0; line-height: 1.12; }
h1 span, .copy-line { display: block; }
h2 { font-size: clamp(34px, 5vw, 76px); }
h3 { font-size: clamp(20px, 2vw, 28px); }
.lead { margin: 24px 0 0; color: rgba(17, 24, 39, 0.72); font-size: clamp(16px, 1.7vw, 20px); line-height: 2; }

.home-hero {
  min-height: calc(100vh - 68px);
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  background: linear-gradient(180deg, #101827, #17233a);
  color: var(--cream);
  overflow: hidden;
}
.home-hero-copy {
  align-self: center;
  justify-self: end;
  width: min(720px, calc(100% - 48px));
  padding: 88px 0;
}
.home-hero h1, .lp-hero h1 {
  margin-top: 28px;
  color: var(--cream);
  font-size: clamp(54px, 7.6vw, 116px);
  line-height: 0.98;
}
.home-hero p, .lp-hero p {
  max-width: 650px;
  margin: 30px 0 0;
  color: rgba(248, 243, 232, 0.78);
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 2;
}
.home-hero-photo, .lp-hero-photo { position: relative; margin: 0; min-height: 100%; overflow: hidden; }
.home-hero-photo { clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%); }
.home-hero-photo::after, .lp-hero-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 24, 39, 0.58), rgba(16, 24, 39, 0.08));
  content: "";
}
.home-hero-photo img, .lp-hero-photo img {
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 68px);
  object-fit: cover;
  filter: saturate(0.94) contrast(1.06);
  animation: slow-photo 16s ease-in-out infinite alternate;
}
.home-hero-photo figcaption, .lp-hero-photo figcaption {
  position: absolute;
  right: clamp(24px, 5vw, 78px);
  bottom: clamp(28px, 6vw, 86px);
  z-index: 2;
  width: min(380px, calc(100% - 48px));
  padding: 24px;
  border: 1px solid rgba(248, 243, 232, 0.34);
  border-radius: 8px;
  background: rgba(248, 243, 232, 0.92);
  color: #101827;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 900;
  line-height: 1.45;
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.28);
}

.marquee { overflow: hidden; background: var(--cream); border-block: 1px solid rgba(17, 24, 39, 0.12); }
.marquee div {
  width: max-content;
  padding: 18px 0;
  color: rgba(17, 24, 39, 0.28);
  font-size: clamp(30px, 5vw, 72px);
  font-weight: 900;
  letter-spacing: 0.1em;
  white-space: nowrap;
  animation: marquee 24s linear infinite;
}

.section { padding: clamp(74px, 10vw, 136px) 0; }
.section.alt { background: rgba(255, 255, 255, 0.54); border-block: 1px solid rgba(17, 24, 39, 0.08); }
.section-inner { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section-head { max-width: 890px; margin-bottom: 46px; }
.section-head p { margin: 18px 0 0; color: var(--muted); font-size: 17px; }
.split { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(330px, 1.05fr); gap: clamp(40px, 7vw, 90px); align-items: center; }

.seo-panel, .process-list {
  display: grid;
  gap: 16px;
}
.seo-panel div, .process-list div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 22px;
  align-items: center;
  min-height: 112px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.08);
}
.seo-panel strong, .process-list span { color: var(--theme); font-size: 20px; font-weight: 900; }
.seo-panel span, .process-list strong { color: #243044; font-size: clamp(18px, 2vw, 25px); line-height: 1.45; }

.lp-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.lp-card {
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 20px 54px rgba(17, 24, 39, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.lp-card:hover { transform: translateY(-6px); box-shadow: 0 30px 72px rgba(17, 24, 39, 0.16); }
.lp-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.lp-card-body { padding: 24px; }
.card-kicker { color: var(--theme); font-size: 12px; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
.lp-card h3 { margin-top: 12px; color: #101827; }
.lp-card p { margin: 14px 0 0; color: var(--muted); font-size: 15px; }
.lp-card strong { display: inline-flex; margin-top: 22px; color: var(--theme); }

.flow-grid, .problem-list, .feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.flow-grid article, .problem-item, .feature-card {
  min-height: 280px;
  padding: 30px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.07);
}
.flow-grid span, .feature-card .number {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--theme-soft);
  color: var(--theme);
  font-weight: 900;
}
.flow-grid h3, .feature-card h3 { margin-top: 34px; color: #101827; }
.flow-grid p, .feature-card p, .problem-item span { color: var(--muted); }
.problem-item { border-left: 5px solid var(--theme-2); }
.problem-item strong { display: block; color: #101827; font-size: clamp(20px, 2vw, 28px); line-height: 1.35; }
.problem-item span { display: block; margin-top: 16px; }

.lp-hero {
  --theme: #174a5f;
  --theme-2: #c79a43;
  --theme-soft: #e8f1f0;
  position: relative;
  min-height: calc(100vh - 68px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  background:
    linear-gradient(90deg, rgba(248, 243, 232, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, var(--theme), #101827);
  background-size: 84px 100%, auto;
  color: var(--cream);
  overflow: hidden;
}
.lp-hero-copy {
  align-self: center;
  justify-self: end;
  width: min(770px, calc(100% - 48px));
  padding: 90px 0 74px;
}
.lp-hero-photo { clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%); }
.keyword-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.keyword-row span {
  border: 1px solid rgba(248, 243, 232, 0.28);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(248, 243, 232, 0.78);
  font-size: 13px;
}
.answer-strip { background: var(--cream); border-bottom: 1px solid rgba(17, 24, 39, 0.12); }
.answer-strip div {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 26px;
  align-items: center;
}
.answer-strip span { color: var(--theme); font-size: 12px; font-weight: 900; letter-spacing: 0.16em; text-transform: uppercase; }
.answer-strip strong { font-size: clamp(20px, 2.5vw, 34px); line-height: 1.4; }
.faq-list { display: grid; gap: 14px; }
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  padding: 24px 28px;
}
.faq-list summary { cursor: pointer; color: #101827; font-size: 20px; font-weight: 900; }
.faq-list p { margin: 14px 0 0; color: var(--muted); }
.related-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.cta-band {
  margin: 0;
  padding: clamp(76px, 11vw, 140px) 0;
  background: linear-gradient(135deg, var(--theme), #101827);
  color: var(--cream);
  overflow: hidden;
}
.cta-band h2 { color: var(--cream); }
.cta-band p { max-width: 760px; color: rgba(248, 243, 232, 0.75); font-size: 18px; line-height: 2; }
.cta-band .button-secondary { background: rgba(248, 243, 232, 0.08); }

.footer { padding: 30px 0; background: #101827; color: rgba(248, 243, 232, 0.68); }
.footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.theme-steel { --theme: #18384a; --theme-2: #f0b84f; --theme-soft: #e8eef1; }
.theme-build { --theme: #3e3427; --theme-2: #f2aa3c; --theme-soft: #f5ead9; }
.theme-retail { --theme: #184d45; --theme-2: #f2c14e; --theme-soft: #e9f3ef; }
.theme-clinic { --theme: #1c5b68; --theme-2: #94d2bd; --theme-soft: #e8f5f4; }
.theme-office { --theme: #1f2f46; --theme-2: #d6a75a; --theme-soft: #eee8dc; }
.theme-realestate { --theme: #263f2e; --theme-2: #c9b06b; --theme-soft: #edf2e9; }
.theme-care { --theme: #5b3b5f; --theme-2: #f0b5c4; --theme-soft: #f5eaf3; }
.theme-logistics { --theme: #173a63; --theme-2: #ffb347; --theme-soft: #e8eff7; }
.theme-accounting { --theme: #24364f; --theme-2: #84c5a7; --theme-soft: #edf5f1; }
.theme-hr { --theme: #663f2f; --theme-2: #f0b36b; --theme-soft: #f5ece6; }
.theme-sales { --theme: #243b73; --theme-2: #f2ce5c; --theme-soft: #eceffc; }
.theme-local { --theme: #172d3b; --theme-2: #7bdff2; --theme-soft: #e7f5f8; }
.theme-meeting { --theme: #302f5f; --theme-2: #c6a6ff; --theme-soft: #efecfb; }

.factory-page {
  background: #060c16;
}
.factory-lp {
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 8%, rgba(123, 223, 242, 0.18), transparent 30%),
    linear-gradient(90deg, rgba(123, 223, 242, 0.055) 1px, transparent 1px),
    #060c16;
  background-size: auto, 72px 72px, auto;
  color: #f8fbff;
}
.factory-hero {
  position: relative;
  min-height: calc(100vh - 68px);
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(540px, 1.2fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(74px, 9vw, 128px) 0;
}
.factory-hero::before {
  position: absolute;
  inset: 8% -14% auto auto;
  width: 52vw;
  height: 52vw;
  max-height: 760px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 223, 242, 0.16), transparent 64%);
  content: "";
}
.factory-hero-copy {
  position: relative;
  z-index: 2;
}
.factory-hero h1 {
  margin: 28px 0 0;
  color: #f8fbff;
  font-size: clamp(50px, 7vw, 108px);
  line-height: 1.02;
}
.factory-hero h1 span,
.factory-section-head h2 span,
.factory-contact h2 span {
  display: block;
}
.factory-hero p {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(248, 251, 255, 0.78);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 2;
}
.factory-dashboard {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(123, 223, 242, 0.26);
  border-radius: 20px;
  background:
    linear-gradient(90deg, rgba(123, 223, 242, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(123, 223, 242, 0.06) 1px, transparent 1px),
    rgba(8, 18, 31, 0.94);
  background-size: 42px 42px;
  padding: 22px;
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.44), inset 0 0 70px rgba(123, 223, 242, 0.08);
}
.dash-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px 20px;
  color: rgba(248, 251, 255, 0.72);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.dash-top strong {
  color: #f8fbff;
  font-size: 14px;
  letter-spacing: 0;
}
.dash-top em {
  border: 1px solid rgba(123, 223, 242, 0.38);
  border-radius: 999px;
  padding: 5px 10px;
  color: #7bdff2;
  font-style: normal;
}
.dash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.25fr;
  gap: 14px;
}
.dash-card {
  min-height: 150px;
  border: 1px solid rgba(123, 223, 242, 0.18);
  border-radius: 14px;
  background: rgba(6, 12, 22, 0.72);
  padding: 18px;
  overflow: hidden;
}
.dash-card span {
  display: block;
  color: rgba(248, 251, 255, 0.62);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.dash-card strong {
  display: block;
  margin-top: 14px;
  color: #f8fbff;
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1;
}
.dash-card.kpi i {
  display: block;
  height: 8px;
  margin-top: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7bdff2 0 78%, rgba(123, 223, 242, 0.16) 78%);
  animation: meterPulse 2.4s ease-in-out infinite;
}
.dash-card.kpi.warn i {
  background: linear-gradient(90deg, #f0b84f 0 42%, rgba(240, 184, 79, 0.16) 42%);
}
.dash-card.chart {
  grid-row: span 2;
  min-height: 314px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 9px;
}
.dash-card.chart span {
  grid-column: 1 / -1;
  align-self: start;
}
.dash-card.chart b {
  display: block;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, #7bdff2, rgba(123, 223, 242, 0.16));
  animation: barRise 2.8s ease-in-out infinite alternate;
}
.dash-card.chart b:nth-child(2) { height: 42%; }
.dash-card.chart b:nth-child(3) { height: 68%; animation-delay: 0.2s; }
.dash-card.chart b:nth-child(4) { height: 54%; animation-delay: 0.4s; }
.dash-card.chart b:nth-child(5) { height: 82%; animation-delay: 0.6s; }
.dash-card.chart b:nth-child(6) { height: 62%; animation-delay: 0.8s; }
.dash-card.map {
  grid-column: span 2;
  min-height: 220px;
}
.factory-map {
  position: relative;
  height: 150px;
  margin-top: 18px;
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(123, 223, 242, 0.12) 1px, transparent 1px),
    linear-gradient(180deg, rgba(123, 223, 242, 0.12) 1px, transparent 1px),
    rgba(123, 223, 242, 0.05);
  background-size: 28px 28px;
}
.factory-map i {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #7bdff2;
  box-shadow: 0 0 0 10px rgba(123, 223, 242, 0.12);
  animation: mapPing 2.8s ease-in-out infinite;
}
.factory-map i:nth-child(1) { left: 12%; top: 28%; }
.factory-map i:nth-child(2) { left: 38%; top: 62%; animation-delay: 0.3s; }
.factory-map i:nth-child(3) { left: 58%; top: 34%; animation-delay: 0.6s; }
.factory-map i:nth-child(4) { left: 78%; top: 70%; animation-delay: 0.9s; }
.factory-map i:nth-child(5) { left: 86%; top: 22%; background: #f0b84f; animation-delay: 1.2s; }
.dash-card.timeline p {
  margin: 13px 0 0;
  color: rgba(248, 251, 255, 0.78);
}
.dash-card.ai {
  background: linear-gradient(135deg, rgba(123, 223, 242, 0.14), rgba(240, 184, 79, 0.12));
}
.dash-card.ai strong {
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.35;
}
.factory-section {
  padding: clamp(78px, 10vw, 148px) 0;
}
.factory-section-head {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 48px;
}
.factory-section-head h2,
.factory-contact h2 {
  margin: 18px 0 0;
  color: #f8fbff;
  font-size: clamp(36px, 5.4vw, 86px);
  line-height: 1.08;
}
.factory-section-head p {
  max-width: 780px;
  color: rgba(248, 251, 255, 0.72);
}
.factory-tile-grid {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.factory-tile {
  min-height: 360px;
  border: 1px solid rgba(123, 223, 242, 0.2);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(12, 28, 47, 0.94), rgba(8, 18, 31, 0.94));
  padding: 28px;
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.24);
}
.factory-tile h3 {
  margin-top: 28px;
  color: #f8fbff;
}
.factory-tile p {
  color: rgba(248, 251, 255, 0.72);
}
.tile-visual {
  height: 138px;
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(123, 223, 242, 0.14) 1px, transparent 1px),
    linear-gradient(180deg, rgba(123, 223, 242, 0.14) 1px, transparent 1px),
    rgba(123, 223, 242, 0.05);
  background-size: 24px 24px;
  display: flex;
  align-items: end;
  gap: 10px;
  padding: 16px;
}
.tile-visual i {
  flex: 1;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, #7bdff2, rgba(123, 223, 242, 0.16));
  animation: barRise 2.6s ease-in-out infinite alternate;
}
.tile-visual i:nth-child(1) { height: 45%; }
.tile-visual i:nth-child(2) { height: 76%; animation-delay: 0.2s; }
.tile-visual i:nth-child(3) { height: 58%; animation-delay: 0.4s; }
.factory-statement {
  padding: clamp(72px, 10vw, 130px) 0;
  background: #f8fbff;
}
.factory-statement p {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
  color: #060c16;
  font-size: clamp(30px, 5vw, 76px);
  font-weight: 900;
  line-height: 1.22;
}
.factory-statement p + p {
  margin-top: 18px;
  color: rgba(6, 12, 22, 0.54);
}
.solution-stack {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  gap: 32px;
}
.solution-row {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid rgba(123, 223, 242, 0.2);
  border-radius: 18px;
  background: rgba(8, 18, 31, 0.76);
}
.solution-row:nth-child(even) .solution-visual {
  order: 2;
}
.solution-visual {
  min-height: 320px;
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(123, 223, 242, 0.1) 1px, transparent 1px),
    linear-gradient(180deg, rgba(123, 223, 242, 0.1) 1px, transparent 1px),
    #091423;
  background-size: 30px 30px;
  padding: 24px;
}
.mini-dashboard {
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.mini-dashboard span {
  border: 1px solid rgba(123, 223, 242, 0.18);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(123, 223, 242, 0.18), rgba(240, 184, 79, 0.08));
}
.mini-dashboard span:nth-child(2) { animation-delay: 0.2s; }
.mini-dashboard span:nth-child(3) { animation-delay: 0.4s; }
.mini-dashboard span:nth-child(4) { animation-delay: 0.6s; }
.solution-copy span,
.factory-flow-grid span {
  color: #7bdff2;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
}
.solution-copy h3 {
  margin-top: 16px;
  color: #f8fbff;
  font-size: clamp(28px, 4vw, 54px);
}
.solution-copy p {
  color: rgba(248, 251, 255, 0.72);
}
.solution-copy strong {
  display: inline-flex;
  margin-top: 18px;
  color: #f0b84f;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.factory-design {
  background: #091423;
}
.factory-flow-grid {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(123, 223, 242, 0.22);
  border-left: 1px solid rgba(123, 223, 242, 0.22);
}
.factory-flow-grid article {
  min-height: 290px;
  padding: 28px;
  border-right: 1px solid rgba(123, 223, 242, 0.22);
  border-bottom: 1px solid rgba(123, 223, 242, 0.22);
}
.factory-flow-grid h3 {
  margin-top: 36px;
  color: #f8fbff;
}
.factory-flow-grid p {
  color: rgba(248, 251, 255, 0.72);
}
.factory-flow-grid em {
  display: block;
  margin-top: 24px;
  color: #f0b84f;
  font-style: normal;
}
.factory-contact {
  padding: clamp(84px, 11vw, 150px) clamp(24px, 6vw, 86px);
  background:
    linear-gradient(135deg, rgba(123, 223, 242, 0.14), rgba(240, 184, 79, 0.1)),
    #0c1828;
}
.factory-contact p {
  max-width: 720px;
  color: rgba(248, 251, 255, 0.74);
  font-size: 18px;
}

@keyframes factoryHalo {
  from { transform: translate3d(0, 0, 0) scale(0.96); opacity: 0.66; }
  to { transform: translate3d(-18px, 20px, 0) scale(1.04); opacity: 1; }
}
@keyframes meterPulse {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.45); }
}
@keyframes barRise {
  from { transform: scaleY(0.72); transform-origin: bottom; }
  to { transform: scaleY(1); transform-origin: bottom; }
}
@keyframes mapPing {
  0%, 100% { transform: scale(0.9); box-shadow: 0 0 0 6px rgba(123, 223, 242, 0.12); }
  50% { transform: scale(1.08); box-shadow: 0 0 0 16px rgba(123, 223, 242, 0.04); }
}

.factory-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(124, 218, 238, 0.14);
  background: rgba(6, 12, 22, 0.76);
  backdrop-filter: blur(18px);
}
.factory-nav {
  width: min(1180px, calc(100% - 48px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.factory-nav-title {
  color: rgba(248, 251, 255, 0.86);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.factory-nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
}
.factory-nav-links a {
  color: rgba(248, 251, 255, 0.64);
  font-size: 13px;
  letter-spacing: 0.08em;
}
.factory-nav-links a:last-child {
  border: 1px solid rgba(124, 218, 238, 0.34);
  border-radius: 999px;
  padding: 10px 18px;
  color: #f8fbff;
}
.factory-page {
  background: #060c16;
}
.factory-lp {
  background:
    radial-gradient(circle at 72% 0%, rgba(64, 159, 207, 0.22), transparent 28%),
    linear-gradient(90deg, rgba(124, 218, 238, 0.055) 1px, transparent 1px),
    #060c16;
  background-size: auto, 78px 78px, auto;
}
.factory-hero {
  display: block;
  width: 100%;
  min-height: auto;
  padding: clamp(96px, 13vw, 168px) 0 clamp(72px, 10vw, 130px);
}
.factory-hero::before {
  animation: none;
}
.factory-hero-copy {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}
.factory-hero h1 {
  max-width: 1180px;
  margin-top: 30px;
  font-size: clamp(50px, 6vw, 96px);
  line-height: 1.03;
  letter-spacing: 0;
}
.factory-hero p {
  max-width: 760px;
  margin-top: 34px;
}
.factory-hero-visual {
  width: min(1900px, 142vw);
  margin: clamp(46px, 7vw, 82px) 0 0 max(24px, calc((100vw - 1180px) / 2));
  border: 1px solid rgba(124, 218, 238, 0.24);
  border-radius: 0;
  background: #091423;
  box-shadow: 0 44px 140px rgba(0, 0, 0, 0.54);
  overflow: hidden;
}
.factory-hero-visual img {
  display: block;
  width: 100%;
  height: auto;
}
.factory-dashboard,
.mini-dashboard span {
  animation: none;
}
.factory-section {
  padding: clamp(96px, 12vw, 172px) 0;
}
.factory-section-head {
  margin-bottom: clamp(52px, 7vw, 86px);
}
.factory-section-head h2,
.factory-contact h2 {
  font-size: clamp(42px, 6vw, 88px);
  letter-spacing: 0;
}
.factory-tile-grid {
  gap: 24px;
}
.factory-tile {
  min-height: 390px;
  border-radius: 0;
  padding: clamp(26px, 3vw, 42px);
  background: linear-gradient(180deg, rgba(11, 28, 48, 0.95), rgba(6, 12, 22, 0.94));
  box-shadow: none;
}
.factory-tile > span {
  color: #7bdff2;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}
.factory-tile h3 {
  margin-top: clamp(90px, 9vw, 140px);
  font-size: clamp(24px, 3vw, 36px);
}
.factory-statement {
  background: #f7fbff;
}
.solution-stack {
  gap: clamp(70px, 9vw, 118px);
}
.solution-row {
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.solution-row:nth-child(even) .solution-visual {
  order: 0;
}
.solution-row:nth-child(even) {
  grid-template-columns: minmax(320px, 0.98fr) minmax(0, 1.02fr);
}
.solution-row:nth-child(even) .solution-copy {
  order: -1;
}
.solution-visual {
  min-height: clamp(360px, 40vw, 520px);
  border: 1px solid rgba(124, 218, 238, 0.18);
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(124, 218, 238, 0.09) 1px, transparent 1px),
    linear-gradient(180deg, rgba(124, 218, 238, 0.09) 1px, transparent 1px),
    #091423;
  background-size: 34px 34px;
}
.solution-screen {
  height: 100%;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 0.7fr 1fr;
  gap: 16px;
}
.solution-screen span {
  border: 1px solid rgba(124, 218, 238, 0.2);
  background: linear-gradient(135deg, rgba(124, 218, 238, 0.18), rgba(7, 18, 32, 0.86));
}
.solution-screen span:first-child {
  grid-row: span 2;
  background-image: url("../assets/manufacturing-dashboard-hero.png?v=20260614-factory");
  background-size: cover;
  background-position: center;
}
.screen-2 span:first-child {
  background-position: 58% center;
}
.screen-3 span:first-child {
  background-position: right center;
}
.factory-design {
  background: #081320;
}
.factory-flow-grid {
  border-color: rgba(124, 218, 238, 0.2);
}
.factory-flow-grid article {
  min-height: 330px;
  border-color: rgba(124, 218, 238, 0.2);
}
.factory-works {
  background: #050a12;
}
.factory-works-grid {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  gap: 24px;
}
.factory-works-grid figure {
  grid-row: span 2;
  margin: 0;
  border: 1px solid rgba(124, 218, 238, 0.18);
  overflow: hidden;
}
.factory-works-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.factory-works-grid article {
  min-height: 230px;
  border: 1px solid rgba(124, 218, 238, 0.18);
  padding: 30px;
  background: rgba(8, 18, 31, 0.9);
}
.factory-works-grid article span {
  color: #7bdff2;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.factory-works-grid article p {
  margin-top: 52px;
  color: rgba(248, 251, 255, 0.74);
  line-height: 2;
}
.factory-contact {
  background:
    linear-gradient(135deg, rgba(124, 218, 238, 0.16), rgba(240, 184, 79, 0.1)),
    #0c1828;
}

/* Reference-informed layout families.
   These are original AJTC designs that borrow structure, rhythm, and motion cues:
   DAAE = dark dashboard/data visualization, Esforta = premium place/hospitality,
   Toyota = luxury editorial journey. */
.lp-page.layout-daae {
  background: #060c16;
  color: #f8fbff;
}
.lp-page.layout-daae .site-header {
  background: rgba(6, 12, 22, 0.84);
  border-bottom-color: rgba(105, 180, 255, 0.18);
}
.lp-page.layout-daae .lp-hero {
  min-height: calc(100vh - 68px);
  grid-template-columns: minmax(0, 0.86fr) minmax(480px, 1.14fr);
  background:
    radial-gradient(circle at 78% 18%, rgba(123, 223, 242, 0.18), transparent 28%),
    linear-gradient(90deg, rgba(123, 223, 242, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, #060c16, #0c1828 54%, #060c16);
  background-size: auto, 68px 68px, auto;
}
.lp-page.layout-daae .lp-hero::after {
  position: absolute;
  inset: 14% 5% 10% auto;
  width: min(48vw, 720px);
  border: 1px solid rgba(123, 223, 242, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(123, 223, 242, 0.16) 1px, transparent 1px),
    linear-gradient(180deg, rgba(123, 223, 242, 0.1) 1px, transparent 1px),
    rgba(9, 20, 35, 0.72);
  background-size: 46px 46px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34), inset 0 0 70px rgba(123, 223, 242, 0.08);
  content: "";
  animation: dashboardGlow 5.5s ease-in-out infinite alternate;
}
.lp-page.layout-daae .lp-hero-copy {
  z-index: 2;
}
.lp-page.layout-daae .lp-hero h1 {
  font-size: clamp(52px, 6.8vw, 104px);
}
.lp-page.layout-daae .lp-hero-photo {
  z-index: 2;
  align-self: center;
  justify-self: center;
  width: min(88%, 760px);
  min-height: auto;
  clip-path: none;
  border: 1px solid rgba(123, 223, 242, 0.24);
  border-radius: 18px;
  background: #091423;
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.42);
}
.lp-page.layout-daae .lp-hero-photo img {
  min-height: 0;
  height: clamp(340px, 48vw, 620px);
  opacity: 0.42;
  mix-blend-mode: luminosity;
}
.lp-page.layout-daae .lp-hero-photo::before {
  position: absolute;
  inset: 22px;
  z-index: 2;
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(123, 223, 242, 0.48) 0 18%, transparent 18% 100%) 0 9% / 100% 3px no-repeat,
    linear-gradient(90deg, rgba(240, 184, 79, 0.68) 0 62%, transparent 62% 100%) 0 34% / 100% 3px no-repeat,
    linear-gradient(90deg, rgba(123, 223, 242, 0.38) 0 42%, transparent 42% 100%) 0 59% / 100% 3px no-repeat,
    linear-gradient(90deg, rgba(240, 184, 79, 0.52) 0 76%, transparent 76% 100%) 0 84% / 100% 3px no-repeat;
  content: "";
}
.lp-page.layout-daae .lp-hero-photo figcaption {
  left: 32px;
  right: 32px;
  bottom: 30px;
  width: auto;
  border-color: rgba(123, 223, 242, 0.32);
  background: rgba(6, 12, 22, 0.78);
  color: #f8fbff;
  backdrop-filter: blur(12px);
}
.lp-page.layout-daae .section,
.lp-page.layout-daae .section.alt {
  background: #060c16;
  border-block-color: rgba(123, 223, 242, 0.14);
}
.lp-page.layout-daae .answer-strip {
  background: #091423;
  border-color: rgba(123, 223, 242, 0.18);
}
.lp-page.layout-daae .answer-strip strong,
.lp-page.layout-daae h2,
.lp-page.layout-daae h3,
.lp-page.layout-daae .section-head p,
.lp-page.layout-daae .lead {
  color: #f8fbff;
}
.lp-page.layout-daae .problem-item,
.lp-page.layout-daae .feature-card,
.lp-page.layout-daae .process-list div,
.lp-page.layout-daae .faq-list details {
  border-color: rgba(123, 223, 242, 0.22);
  background: linear-gradient(180deg, rgba(12, 28, 47, 0.92), rgba(8, 18, 31, 0.92));
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
}
.lp-page.layout-daae .problem-item span,
.lp-page.layout-daae .feature-card p,
.lp-page.layout-daae .faq-list p {
  color: rgba(248, 251, 255, 0.72);
}

.lp-page.layout-esforta {
  background: #fff7dd;
  color: #2e1b11;
}
.lp-page.layout-esforta .site-header {
  background: rgba(46, 27, 17, 0.94);
  color: #fff7dd;
}
.lp-page.layout-esforta .lp-hero {
  width: min(1040px, 100%);
  min-height: calc(100vh - 68px);
  margin: 0 auto;
  grid-template-columns: 1fr;
  background: #fff7dd;
  color: #2e1b11;
}
.lp-page.layout-esforta .lp-hero-copy {
  width: min(900px, calc(100% - 44px));
  justify-self: start;
  padding: 120px 0 44px;
}
.lp-page.layout-esforta .lp-hero h1 {
  color: #2e1b11;
  font-family: Georgia, "Times New Roman", "Yu Mincho", serif;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.98;
  font-weight: 500;
}
.lp-page.layout-esforta .lp-hero p {
  color: rgba(46, 27, 17, 0.74);
}
.lp-page.layout-esforta .button {
  background: #2e1b11;
  color: #fff7dd;
}
.lp-page.layout-esforta .button-secondary {
  border-color: rgba(46, 27, 17, 0.28);
  background: transparent;
  color: #2e1b11;
}
.lp-page.layout-esforta .keyword-row span {
  border-color: rgba(46, 27, 17, 0.18);
  color: rgba(46, 27, 17, 0.68);
}
.lp-page.layout-esforta .lp-hero-photo {
  width: 100%;
  min-height: auto;
  clip-path: none;
}
.lp-page.layout-esforta .lp-hero-photo img {
  height: clamp(420px, 52vw, 720px);
  min-height: 0;
  border-radius: 0;
}
.lp-page.layout-esforta .lp-hero-photo::after {
  background: linear-gradient(180deg, rgba(46, 27, 17, 0.05), rgba(46, 27, 17, 0.22));
}
.lp-page.layout-esforta .lp-hero-photo figcaption {
  left: clamp(22px, 5vw, 72px);
  right: auto;
  bottom: clamp(22px, 5vw, 72px);
  width: min(520px, calc(100% - 44px));
  border-color: rgba(255, 247, 221, 0.72);
  background: rgba(255, 247, 221, 0.88);
  color: #2e1b11;
}
.lp-page.layout-esforta .answer-strip {
  background: #2e1b11;
  color: #fff7dd;
}
.lp-page.layout-esforta .answer-strip strong {
  color: #fff7dd;
}
.lp-page.layout-esforta .section,
.lp-page.layout-esforta .section.alt {
  background: #fff7dd;
}
.lp-page.layout-esforta .section-head h2 {
  color: #2e1b11;
  font-family: Georgia, "Times New Roman", "Yu Mincho", serif;
  font-weight: 500;
}
.lp-page.layout-esforta .problem-list,
.lp-page.layout-esforta .feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.lp-page.layout-esforta .problem-item,
.lp-page.layout-esforta .feature-card,
.lp-page.layout-esforta .process-list div,
.lp-page.layout-esforta .faq-list details {
  border-color: rgba(46, 27, 17, 0.14);
  background: rgba(255, 255, 255, 0.48);
}

.lp-page.layout-toyota {
  background: #f0f0f0;
  color: #222;
}
.lp-page.layout-toyota .site-header {
  background: rgba(255, 255, 255, 0.9);
  color: #222;
  border-bottom-color: rgba(34, 34, 34, 0.12);
}
.lp-page.layout-toyota .brand-mark {
  border-color: rgba(34, 34, 34, 0.18);
}
.lp-page.layout-toyota .nav-links {
  color: rgba(34, 34, 34, 0.68);
}
.lp-page.layout-toyota .lp-hero {
  min-height: calc(100vh - 68px);
  grid-template-columns: 1fr;
  background: #fff;
  color: #222;
}
.lp-page.layout-toyota .lp-hero-copy {
  justify-self: center;
  width: min(1120px, calc(100% - 48px));
  padding: 92px 0 48px;
}
.lp-page.layout-toyota .lp-hero h1 {
  color: #222;
  max-width: 960px;
  font-family: Georgia, "Times New Roman", "Yu Mincho", serif;
  font-size: clamp(46px, 7.2vw, 104px);
  font-weight: 500;
  line-height: 1.05;
}
.lp-page.layout-toyota .lp-hero p {
  color: rgba(34, 34, 34, 0.68);
}
.lp-page.layout-toyota .button {
  background: #222;
  color: #fff;
}
.lp-page.layout-toyota .button-secondary {
  border-color: rgba(34, 34, 34, 0.24);
  color: #222;
  background: transparent;
}
.lp-page.layout-toyota .keyword-row span {
  border-color: rgba(34, 34, 34, 0.2);
  color: rgba(34, 34, 34, 0.64);
}
.lp-page.layout-toyota .lp-hero-photo {
  width: min(1120px, calc(100% - 48px));
  justify-self: center;
  min-height: auto;
  clip-path: none;
}
.lp-page.layout-toyota .lp-hero-photo img {
  height: clamp(360px, 50vw, 680px);
  min-height: 0;
}
.lp-page.layout-toyota .lp-hero-photo::after {
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.28));
}
.lp-page.layout-toyota .lp-hero-photo figcaption {
  right: 34px;
  bottom: 34px;
  width: min(460px, calc(100% - 68px));
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.9);
  color: #222;
}
.lp-page.layout-toyota .answer-strip {
  background: #333;
  color: #fff;
}
.lp-page.layout-toyota .answer-strip strong {
  color: #fff;
}
.lp-page.layout-toyota .section {
  background: #f0f0f0;
}
.lp-page.layout-toyota .section.alt {
  background: #fff;
}
.lp-page.layout-toyota .section-head h2 {
  color: #222;
  font-family: Georgia, "Times New Roman", "Yu Mincho", serif;
  font-weight: 500;
}
.lp-page.layout-toyota .problem-item,
.lp-page.layout-toyota .feature-card {
  min-height: 405px;
  background: #fff;
}
.lp-page.layout-toyota .problem-item strong,
.lp-page.layout-toyota .feature-card h3 {
  font-family: Georgia, "Times New Roman", "Yu Mincho", serif;
  font-weight: 500;
}

@keyframes dashboardGlow {
  from { opacity: 0.76; transform: translateY(0); }
  to { opacity: 1; transform: translateY(-16px); }
}

@keyframes slow-photo {
  from { transform: scale(1.04) translateX(0); }
  to { transform: scale(1.1) translateX(-18px); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 1020px) {
  .home-hero, .lp-hero, .split { grid-template-columns: 1fr; }
  .factory-hero {
    width: min(100% - 48px, 1180px);
    padding-left: 0;
    padding-right: 0;
  }
  .factory-hero-copy {
    width: 100%;
  }
  .factory-hero-visual {
    width: min(1600px, 170vw);
    margin-left: 0;
  }
  .dash-grid {
    grid-template-columns: 1fr 1fr;
  }
  .dash-card.chart,
  .dash-card.map {
    grid-column: auto;
    grid-row: auto;
  }
  .factory-tile-grid,
  .factory-flow-grid {
    grid-template-columns: 1fr 1fr;
  }
  .solution-row {
    grid-template-columns: 1fr;
  }
  .solution-row:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .solution-row:nth-child(even) .solution-copy,
  .solution-row:nth-child(even) .solution-visual {
    order: initial;
  }
  .factory-works-grid {
    grid-template-columns: 1fr;
  }
  .factory-works-grid figure {
    grid-row: auto;
  }
  .lp-page.layout-daae .lp-hero,
  .lp-page.layout-esforta .lp-hero,
  .lp-page.layout-toyota .lp-hero {
    grid-template-columns: 1fr;
  }
  .lp-page.layout-daae .lp-hero::after {
    inset: auto 18px 70px;
    width: auto;
    height: 430px;
  }
  .home-hero-copy, .lp-hero-copy { justify-self: center; padding-bottom: 44px; }
  .lp-page.layout-daae .lp-hero-copy,
  .lp-page.layout-esforta .lp-hero-copy,
  .lp-page.layout-toyota .lp-hero-copy {
    width: min(100% - 48px, 760px);
    justify-self: center;
  }
  .home-hero-photo, .lp-hero-photo { min-height: 430px; clip-path: none; }
  .lp-page.layout-daae .lp-hero-photo,
  .lp-page.layout-esforta .lp-hero-photo,
  .lp-page.layout-toyota .lp-hero-photo {
    width: min(100% - 48px, 760px);
    min-height: 430px;
    clip-path: none;
  }
  .home-hero-photo img, .lp-hero-photo img { min-height: 430px; }
  .lp-grid, .flow-grid, .problem-list, .feature-grid, .related-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .nav { min-height: auto; padding: 14px 0; align-items: flex-start; flex-direction: column; }
  .nav-links { width: 100%; overflow-x: auto; padding-bottom: 4px; }
  .factory-hero {
    width: min(100% - 28px, 1180px);
    padding-top: 52px;
  }
  .factory-hero h1 {
    font-size: clamp(38px, 11vw, 58px);
  }
  .factory-section-head,
  .factory-tile-grid,
  .solution-stack,
  .factory-flow-grid,
  .factory-statement p {
    width: min(100% - 28px, 1180px);
  }
  .dash-grid,
  .factory-tile-grid,
  .factory-flow-grid {
    grid-template-columns: 1fr;
  }
  .factory-dashboard {
    padding: 14px;
  }
  .factory-nav {
    width: min(100% - 28px, 1180px);
    min-height: auto;
    padding: 16px 0;
    align-items: flex-start;
    flex-direction: column;
  }
  .factory-nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }
  .factory-hero-visual {
    width: 155vw;
  }
  .solution-visual {
    min-height: 320px;
  }
  .solution-screen {
    grid-template-columns: 1fr;
  }
  .solution-screen span:first-child {
    min-height: 190px;
  }
  .factory-works-grid {
    width: min(100% - 28px, 1180px);
  }
  .dash-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .home-hero h1, .lp-hero h1 { font-size: clamp(42px, 14vw, 68px); }
  h2 { font-size: clamp(32px, 10vw, 48px); }
  .button, .button-secondary { width: 100%; }
  .lp-page.layout-daae .lp-hero::after {
    display: none;
  }
  .lp-page.layout-daae .hero-actions,
  .lp-page.layout-esforta .hero-actions,
  .lp-page.layout-toyota .hero-actions {
    width: 100%;
  }
  .lp-page.layout-daae .problem-list,
  .lp-page.layout-daae .feature-grid,
  .lp-page.layout-esforta .problem-list,
  .lp-page.layout-esforta .feature-grid {
    grid-template-columns: 1fr;
  }
  .home-hero-photo figcaption, .lp-hero-photo figcaption { position: relative; right: auto; bottom: auto; margin: -76px auto 36px; }
  .lp-grid, .flow-grid, .problem-list, .feature-grid, .related-grid { grid-template-columns: 1fr; }
  .seo-panel div, .process-list div, .answer-strip div { grid-template-columns: 1fr; }
  .section-inner, .nav, .footer-inner, .answer-strip div { width: min(100% - 28px, 1180px); }
}
