:root {
  color-scheme: light;
  --ink: #101622;
  --muted: #5f6876;
  --navy: #061631;
  --navy-2: #0b2344;
  --orange: #ff6b00;
  --orange-2: #ff9f16;
  --paper: #f6f7f9;
  --white: #ffffff;
  --line: rgba(16, 22, 34, 0.12);
  --shadow: 0 20px 52px rgba(10, 28, 57, 0.16);
  --shadow-soft: 0 14px 34px rgba(10, 28, 57, 0.1);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 8%, rgba(255, 107, 0, 0.16), transparent 22%),
    radial-gradient(circle at 12% 34%, rgba(10, 35, 68, 0.09), transparent 26%),
    var(--paper);
  font-family: "Inter", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.65;
}

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

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

p,
h1,
h2,
h3 {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 26px;
  width: min(1180px, calc(100% - 36px));
  min-height: 66px;
  padding: 10px 14px 10px 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  box-shadow: 0 12px 36px rgba(6, 22, 49, 0.12);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand span {
  display: none;
}

.brand-logo {
  width: 158px;
  height: auto;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(16, 22, 34, 0.16);
  border-radius: var(--radius);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  grid-area: 1 / 1;
  background: var(--navy);
  border-radius: 999px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: 0.83rem;
  font-weight: 800;
  white-space: nowrap;
}

.desktop-nav a {
  position: relative;
  padding: 9px 0;
}

.desktop-nav a::after {
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

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

.nav-cta,
.primary-btn,
.secondary-btn,
.download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 28px;
  border-radius: var(--radius);
  font-weight: 900;
  white-space: nowrap;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.nav-cta,
.primary-btn {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 12px 24px rgba(255, 107, 0, 0.32);
}

.primary-btn::after,
.nav-cta::after,
.secondary-btn::after,
.download-btn::after {
  margin-left: 14px;
  content: "›";
  font-size: 1.35rem;
  line-height: 1;
}

.secondary-btn {
  min-width: 220px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 22, 34, 0.3);
}

.download-btn {
  min-height: 44px;
  color: var(--navy);
  background: var(--white);
}

.primary-btn:hover,
.secondary-btn:hover,
.download-btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 700px;
  padding: 128px max(26px, calc((100vw - 1200px) / 2)) 26px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(108deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 43%, rgba(255, 255, 255, 0.38) 64%, rgba(255, 255, 255, 0.2) 100%),
    linear-gradient(160deg, rgba(255, 255, 255, 0) 0 64%, rgba(255, 107, 0, 0.15) 64% 100%);
  content: "";
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -3;
  width: 58%;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.05);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 520px;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-copy {
  max-width: 690px;
  padding-top: 18px;
}

.script-label {
  color: var(--orange);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 1.35rem;
  line-height: 1;
}

.hero h1 {
  margin-top: 14px;
  font-size: 4.05rem;
  font-weight: 1000;
  line-height: 1.08;
}

.hero h1 > span,
.hero h1 > strong {
  display: block;
  white-space: nowrap;
}

.hero h1 strong {
  color: var(--orange);
  font-size: 4.05rem;
}

.hero h1 .h1-chunk {
  display: block;
  white-space: nowrap;
}

.hero h1 .h1-pair span {
  display: block;
  white-space: nowrap;
}

.hero h1.h1-long,
.hero h1.h1-long strong {
  font-size: clamp(3.05rem, 4.15vw, 3.2rem);
}

.hero h1.h1-long .h1-chunk {
  white-space: normal;
}

.h1-keep {
  display: inline-block;
  white-space: nowrap;
}

.hero-lead {
  max-width: 560px;
  margin-top: 22px;
  font-size: 1.04rem;
  font-weight: 800;
  line-height: 1.95;
  overflow-wrap: break-word;
}

.hero-lead .lead-line {
  display: inline;
}

.hero [data-reveal],
.hero [data-reveal-group] > * {
  opacity: 1;
  transform: none;
}

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

.hero-visual {
  position: relative;
  min-height: 474px;
}

.hero-visual::before {
  position: absolute;
  inset: 8% 4% 6% -2%;
  background:
    linear-gradient(135deg, rgba(255, 107, 0, 0.3), rgba(255, 255, 255, 0.22)),
    repeating-linear-gradient(110deg, rgba(255, 255, 255, 0.55) 0 1px, transparent 1px 20px);
  border-radius: var(--radius);
  content: "";
  transform: skewX(-10deg);
}

.hero-phone,
.hero-camera,
.hero-dashboard {
  position: absolute;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-phone {
  top: 18px;
  left: 34px;
  width: 255px;
  padding: 12px;
  background:
    linear-gradient(150deg, rgba(17, 24, 39, 0.98), rgba(6, 22, 49, 0.96)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 26px);
  transform: rotate(8deg);
}

.hero-phone img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 6px;
}

.hero-phone span {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 900;
}

.hero-map {
  display: grid;
  gap: 9px;
  padding: 18px 10px 10px;
}

.hero-map b {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  font-size: 0.78rem;
}

.hero-map b::after {
  width: 34%;
  height: 5px;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
  border-radius: 999px;
  content: "";
}

.hero-camera {
  right: 0;
  top: 60px;
  width: 300px;
  padding: 14px;
  background:
    linear-gradient(145deg, rgba(3, 8, 21, 0.96), rgba(8, 38, 74, 0.94)),
    radial-gradient(circle at 82% 18%, rgba(255, 107, 0, 0.26), transparent 34%);
}

.hero-camera img {
  width: 100%;
  height: 182px;
  object-fit: cover;
  opacity: 0.82;
}

.hero-camera span {
  display: block;
  color: var(--orange-2);
  font-size: 0.75rem;
  font-weight: 1000;
}

.hero-flow {
  display: grid;
  grid-template-columns: repeat(7, auto);
  align-items: center;
  gap: 6px;
  min-height: 154px;
  margin-top: 10px;
}

.hero-flow b {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 1000;
}

.hero-flow i {
  width: 16px;
  height: 2px;
  background: var(--orange-2);
  border-radius: 999px;
}

.hero-dashboard {
  right: 42px;
  bottom: 38px;
  width: 260px;
  padding: 18px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(10, 18, 34, 0.94), rgba(8, 38, 74, 0.94)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 28px);
}

.hero-dashboard p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-weight: 900;
}

.hero-dashboard strong {
  display: block;
  margin-top: 6px;
  color: var(--orange-2);
  font-size: 3.15rem;
  line-height: 1;
}

.hero-dashboard span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
}

.growth-board {
  position: absolute;
  top: 28px;
  right: 0;
  z-index: 2;
  width: 500px;
  padding: 24px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(5, 14, 33, 0.97), rgba(8, 38, 74, 0.94)),
    radial-gradient(circle at 88% 8%, rgba(255, 107, 0, 0.3), transparent 28%),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 22px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  box-shadow: 0 28px 70px rgba(3, 12, 28, 0.28);
}

.growth-board::before {
  position: absolute;
  right: -92px;
  bottom: -92px;
  width: 230px;
  height: 230px;
  background: rgba(255, 107, 0, 0.18);
  border-radius: 50%;
  content: "";
}

.growth-board-head {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.growth-board-head span {
  color: var(--orange-2);
  font-size: 0.76rem;
  font-weight: 1000;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.growth-board-head strong {
  max-width: 270px;
  font-size: 1.08rem;
  line-height: 1.35;
  text-align: right;
}

.execution-table {
  position: relative;
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.execution-table article {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 6px 14px;
  align-items: center;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.execution-table span {
  grid-row: 1 / span 2;
  color: var(--orange-2);
  font-size: 0.7rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
}

.execution-table b {
  grid-column: 2;
  color: var(--white);
  font-size: 0.98rem;
  line-height: 1.35;
}

.execution-table p {
  grid-column: 2;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.72rem;
  font-weight: 780;
  line-break: strict;
  overflow-wrap: break-word;
}

.execution-table strong {
  grid-column: 3;
  grid-row: 1 / span 2;
  justify-self: end;
  min-width: 136px;
  padding: 7px 10px;
  color: var(--white);
  background: rgba(255, 107, 0, 0.18);
  border: 1px solid rgba(255, 107, 0, 0.28);
  border-radius: 999px;
  font-size: 0.72rem;
  line-height: 1.25;
  text-align: center;
  white-space: nowrap;
  line-break: strict;
  overflow-wrap: break-word;
}

.board-proof {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.board-proof span {
  display: grid;
  gap: 4px;
  min-height: 74px;
  padding: 13px 14px;
  color: rgba(255, 255, 255, 0.82);
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.24), rgba(255, 255, 255, 0.07));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 900;
}

.board-proof strong {
  color: var(--orange-2);
  font-size: 1.8rem;
  line-height: 1;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 610px;
  margin: 28px auto 0 max(calc((100% - 1200px) / 2), 0px);
}

.hero-stats article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  min-height: 72px;
  padding: 13px 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.hero-stats strong {
  color: var(--orange);
  font-size: 1.75rem;
  line-height: 1;
}

.hero-stats span {
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.35;
}

.hero-stats small {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1.35;
}

.problem-reason {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.35fr);
  max-width: 1200px;
  margin: -8px auto 0;
  padding: 0 26px;
}

.problem-panel,
.reason-panel,
.flow-panel,
.cases-panel,
.target-panel,
.support-panel,
.faq-panel,
.final-banner {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.problem-panel {
  position: relative;
  padding: 34px 36px 36px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(142deg, var(--navy), #031022);
}

.problem-panel::after {
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 210px;
  height: 210px;
  background: rgba(255, 107, 0, 0.18);
  border-radius: 50%;
  content: "";
}

.problem-panel h2,
.reason-panel h2,
.section-head h2,
.target-panel h2,
.faq-panel h2,
.final-banner h2 {
  font-size: 2rem;
  line-height: 1.25;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  list-style: none;
  font-size: 0.92rem;
  font-weight: 800;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  position: absolute;
  top: 0.12em;
  left: 0;
  width: 18px;
  height: 18px;
  border: 2px solid var(--orange);
  border-radius: 3px;
  content: "";
}

.check-list li::after {
  position: absolute;
  top: 0.18em;
  left: 6px;
  width: 5px;
  height: 11px;
  border-right: 3px solid var(--orange);
  border-bottom: 3px solid var(--orange);
  content: "";
  transform: rotate(42deg);
}

.check-list.orange li::before {
  background: rgba(255, 107, 0, 0.08);
}

.reason-panel {
  padding: 30px 0 0 28px;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.96));
}

.reason-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.reason-cards article {
  min-height: 184px;
  padding: 22px 18px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.card-number {
  display: block;
  margin-bottom: 16px;
  color: rgba(255, 107, 0, 0.42);
  font-size: 1.3rem;
  font-weight: 1000;
  text-align: right;
}

.reason-cards b {
  display: block;
  font-size: 0.96rem;
  line-height: 1.52;
}

.reason-cards p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 750;
}

.services,
.flow-cases,
.target-cta,
.faq-final {
  max-width: 1200px;
  margin: 34px auto 0;
  padding: 0 26px;
}

.section-head {
  display: flex;
  align-items: end;
  gap: 16px;
  margin-bottom: 16px;
}

.section-head .script-label {
  min-width: 82px;
}

.section-head h2 {
  white-space: nowrap;
}

.section-head span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

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

.service-card {
  min-height: 282px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

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

.service-card p {
  margin: 14px 14px 2px;
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 1000;
}

.service-card h3 {
  margin: 0 14px;
  font-size: 1.02rem;
  line-height: 1.35;
}

.service-card span {
  display: block;
  margin: 8px 14px 18px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.home-intro,
.home-system,
.abstract-cases {
  max-width: 1200px;
  margin: 34px auto 0;
  padding: 0 26px;
}

.home-intro {
  max-width: none;
  margin-top: 0;
  padding: 74px max(26px, calc((100vw - 1200px) / 2));
  color: var(--white);
  background:
    radial-gradient(circle at 88% 14%, rgba(255, 107, 0, 0.24), transparent 26%),
    linear-gradient(140deg, #061631 0%, #091f3b 52%, #102a45 100%);
}

.home-intro .section-head,
.home-intro .capability-grid {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

.home-intro .section-head span {
  color: rgba(255, 255, 255, 0.72);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.capability-card {
  position: relative;
  min-height: 318px;
  padding: 28px 24px 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    radial-gradient(circle at 92% 8%, rgba(255, 107, 0, 0.18), transparent 30%);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.capability-card::after {
  position: absolute;
  right: -40px;
  bottom: -50px;
  width: 128px;
  height: 128px;
  background: rgba(255, 107, 0, 0.09);
  border-radius: 50%;
  content: "";
}

.capability-card.highlight {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 107, 0, 0.9), rgba(8, 38, 74, 0.95)),
    url("assets/images/ai-camp-hero.png") center / cover;
}

.capability-card > span {
  color: var(--orange-2);
  font-size: 0.72rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.capability-card.highlight > span,
.capability-card.highlight p,
.capability-card.highlight li {
  color: rgba(255, 255, 255, 0.78);
}

.capability-card h3 {
  margin-top: 18px;
  color: var(--white);
  font-size: 1.22rem;
  line-height: 1.4;
}

.capability-card p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
  font-weight: 760;
}

.capability-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
  list-style: none;
}

.capability-card li {
  padding: 6px 9px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 900;
}

.capability-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--orange-2);
  font-size: 0.82rem;
  font-weight: 1000;
}

.home-system {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 18px;
  align-items: stretch;
}

.system-copy {
  padding: 34px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(6, 22, 49, 0.96), rgba(10, 35, 68, 0.94)),
    url("assets/images/hero-premium-strategy.png") center / cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.system-copy h2 {
  margin-top: 12px;
  font-size: 2rem;
  line-height: 1.28;
}

.system-copy p:not(.script-label) {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  font-weight: 760;
}

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

.system-map article,
.case-story-grid article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.system-map b {
  display: block;
  color: var(--orange);
  font-size: 1.45rem;
  line-height: 1;
}

.system-map span {
  display: block;
  margin-top: 14px;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 900;
}

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

.proof-strip article {
  min-height: 156px;
  padding: 22px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82)),
    radial-gradient(circle at 92% 8%, rgba(255, 107, 0, 0.16), transparent 28%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.proof-strip strong {
  display: block;
  color: var(--orange);
  font-size: 2.15rem;
  line-height: 1;
}

.proof-strip span {
  display: block;
  margin-top: 12px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 900;
}

.proof-strip small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 760;
  line-height: 1.55;
}

.case-story-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.case-story-grid article {
  min-height: 236px;
}

.case-story-grid span {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 1000;
  letter-spacing: 0.04em;
}

.case-story-grid h3 {
  margin-top: 10px;
  font-size: 1.05rem;
  line-height: 1.42;
}

.case-story-grid p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 760;
}

.case-story-grid strong {
  display: block;
  margin-top: 14px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 1000;
  line-height: 1.65;
}

.final-banner .primary-btn {
  width: fit-content;
  margin-top: 22px;
}

.flow-cases {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 18px;
}

.flow-panel,
.cases-panel,
.target-panel,
.faq-panel {
  padding: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
}

.section-head.compact {
  margin-bottom: 18px;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.flow-steps article {
  position: relative;
  min-height: 176px;
  padding: 20px 14px 16px;
  text-align: center;
  background: linear-gradient(180deg, var(--white), #f7f9fc);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.flow-steps article + article::before {
  position: absolute;
  top: 50%;
  left: -15px;
  color: var(--muted);
  content: "→";
  font-weight: 1000;
  transform: translateY(-50%);
}

.flow-steps b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  color: var(--orange);
  background: var(--white);
  border: 2px solid rgba(255, 107, 0, 0.32);
  border-radius: 50%;
  font-size: 1rem;
}

.flow-steps h3 {
  margin-top: 14px;
  font-size: 0.95rem;
  white-space: nowrap;
}

.flow-steps p,
.cases-lead,
.support-panel p,
.faq-panel p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 750;
}

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

.case-grid span {
  display: grid;
  min-height: 68px;
  place-items: center;
  padding: 10px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 22, 49, 0.72), rgba(255, 107, 0, 0.52)),
    url("assets/images/hero-premium-strategy.png") center / cover;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 1000;
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.target-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr) minmax(320px, 0.92fr);
  gap: 14px;
}

.target-panel {
  min-height: 244px;
}

.support-panel {
  display: grid;
  gap: 12px;
}

.support-panel article {
  padding: 22px;
  background: var(--white);
  border: 1px solid rgba(255, 107, 0, 0.28);
  border-radius: var(--radius);
}

.support-panel h3 {
  font-size: 1rem;
}

.orange-cta {
  min-height: 244px;
  padding: 30px;
  color: var(--white);
  background:
    radial-gradient(circle at 92% 85%, rgba(255, 255, 255, 0.38), transparent 20%),
    linear-gradient(135deg, #ff4d00, var(--orange-2));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.orange-cta p {
  font-size: 1.8rem;
  font-weight: 1000;
  line-height: 1.25;
}

.orange-cta span {
  display: block;
  margin-top: 10px;
  font-size: 0.86rem;
  font-weight: 800;
}

.orange-cta .primary-btn {
  margin-top: 22px;
}

.primary-btn.white {
  color: var(--orange);
  background: var(--white);
  box-shadow: 0 12px 24px rgba(6, 22, 49, 0.14);
}

.orange-cta .download-btn {
  width: 100%;
  margin-top: 12px;
}

.faq-final {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 18px;
  margin-bottom: 34px;
}

.faq-panel details {
  margin-top: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq-panel summary {
  cursor: pointer;
  padding: 14px 16px;
  font-size: 0.95rem;
  font-weight: 900;
}

.faq-panel details p {
  padding: 0 16px 16px;
}

.final-banner {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 280px;
  padding: 42px;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.6)),
    url("assets/images/results-flow.png") right center / cover;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.final-banner::after {
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 260px;
  height: 260px;
  background: rgba(255, 107, 0, 0.24);
  border-radius: 50%;
  content: "";
}

.final-banner p {
  color: var(--navy);
  font-size: 1.45rem;
  font-weight: 1000;
}

.final-banner h2 {
  max-width: 660px;
  margin-top: 12px;
  color: var(--orange);
  font-size: 2.6rem;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(300px, 1.05fr) minmax(360px, 1.1fr) auto;
  align-items: start;
  gap: 28px;
  padding: 30px max(26px, calc((100vw - 1200px) / 2));
  color: var(--white);
  background: var(--navy);
}

.footer-brand .brand-logo {
  filter: brightness(0) invert(1);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 14px 22px;
  font-size: 0.82rem;
  font-weight: 800;
}

.site-footer nav a,
.footer-social a {
  min-width: max-content;
  white-space: nowrap;
}

.site-footer small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
}

.page-top {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--navy);
  background: var(--white);
  border-radius: 50%;
  font-weight: 1000;
}

.tilt-card {
  transform: perspective(900px) rotateX(var(--tilt-y, 0)) rotateY(var(--tilt-x, 0));
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

[data-reveal],
[data-reveal-group] > * {
  opacity: 1;
  transform: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].is-visible,
[data-reveal-group] > *.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section {
  max-width: 1200px;
  margin: 34px auto 0;
  padding: 0 26px;
}

#services,
#cases,
#flow,
#faq {
  scroll-margin-top: 110px;
}

.page-hero {
  min-height: 520px;
  padding: 132px max(26px, calc((100vw - 1200px) / 2)) 72px;
  color: var(--ink);
}

.page-hero::before {
  background:
    linear-gradient(108deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.42) 100%),
    linear-gradient(160deg, rgba(255, 255, 255, 0) 0 66%, rgba(255, 107, 0, 0.12) 66% 100%);
}

.hero-media {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: -3;
  width: 56%;
  background: url("assets/images/hero-premium-strategy.png") center / cover;
  filter: saturate(1.06) contrast(1.04);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

.hero-inner {
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  color: var(--orange);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 1.24rem;
  font-weight: 700;
  line-height: 1;
}

.page-hero h1 {
  max-width: 880px;
  margin-top: 16px;
  font-size: clamp(2.6rem, 6vw, 4.35rem);
  font-weight: 1000;
  line-height: 1.12;
  overflow-wrap: normal;
}

.page-lead {
  max-width: 680px;
  margin-top: 24px;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.95;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 28px;
  border-radius: var(--radius);
  font-weight: 900;
  white-space: nowrap;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 12px 24px rgba(255, 107, 0, 0.28);
}

.button.ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(16, 22, 34, 0.28);
}

.button.light {
  color: var(--orange);
  background: var(--white);
}

.premium-grid,
.content-grid,
.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

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

.premium-card,
.detail-card,
.contact-card,
.contact-intro,
.contact-form {
  padding: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.premium-card.accent {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(6, 22, 49, 0.96), rgba(10, 35, 68, 0.94)),
    url("assets/images/results-flow.png") center / cover;
}

.premium-card h3,
.detail-card h3,
.contact-card h3 {
  margin-top: 12px;
  font-size: 1.18rem;
  line-height: 1.42;
}

.premium-card p,
.detail-card li,
.contact-card p,
.large-copy p,
.contact-intro p,
.cta-section p {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 760;
}

.premium-card.accent p {
  color: rgba(255, 255, 255, 0.78);
}

.premium-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--orange);
  font-weight: 1000;
}

.card-index {
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 1000;
  letter-spacing: 0.06em;
}

.detail-card ul {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding-left: 1.1em;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 32px;
}

.split-section h2,
.cta-section h2 {
  margin-top: 12px;
  font-size: 2rem;
  line-height: 1.3;
}

.large-copy {
  display: grid;
  gap: 14px;
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1200px;
  margin: 34px auto;
  padding: 34px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.86);
}

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

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

.evidence-card {
  position: relative;
  min-height: 176px;
  padding: 22px 20px;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.86)),
    radial-gradient(circle at 92% 10%, rgba(255, 107, 0, 0.18), transparent 30%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.evidence-card.is-strong {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(6, 22, 49, 0.96), rgba(9, 36, 72, 0.92)),
    radial-gradient(circle at 92% 8%, rgba(255, 159, 22, 0.26), transparent 30%);
  border-color: rgba(255, 255, 255, 0.16);
}

.evidence-card span {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 1000;
  letter-spacing: 0;
}

.evidence-card strong {
  display: block;
  margin-top: 12px;
  color: var(--orange);
  font-size: clamp(1.95rem, 2.7vw, 2.42rem);
  line-height: 1;
  white-space: nowrap;
}

.evidence-card p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 780;
}

.evidence-card.is-strong p {
  color: rgba(255, 255, 255, 0.78);
}

.case-pattern-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.case-pattern-grid article {
  padding: 26px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.case-pattern-grid article > span {
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 1000;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.case-pattern-grid h3 {
  margin-top: 10px;
  font-size: 1.3rem;
  line-height: 1.35;
}

.case-pattern-grid dl {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
}

.case-pattern-grid dl > div {
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr);
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.case-pattern-grid dt,
.case-pattern-grid dd {
  margin: 0;
}

.case-pattern-grid dt {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 1000;
}

.case-pattern-grid dd {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 760;
}

.case-rail article,
.heritage-stats article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.case-rail article > p:first-child {
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 1000;
}

.case-rail h3 {
  margin-top: 10px;
  font-size: 1.05rem;
  line-height: 1.45;
}

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

.heritage-stats strong {
  display: block;
  color: var(--orange);
  font-size: 1.8rem;
  line-height: 1;
}

.heritage-stats span {
  display: block;
  margin-top: 10px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 900;
}

.table-list {
  display: grid;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.table-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

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

.table-row span {
  color: var(--muted);
  font-weight: 760;
}

.social-links,
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.social-links a,
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 900;
}

.social-links img,
.footer-social img {
  width: 18px;
  height: 18px;
}

.footer-brand {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.footer-brand img {
  width: 150px;
  filter: brightness(0) invert(1);
}

.footer-brand p,
.footer-copy {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 760;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  min-width: 0;
}

.footer-social {
  align-content: start;
  min-width: 0;
}

.footer-copy {
  align-self: start;
  white-space: nowrap;
}

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

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
}

.privacy-check {
  grid-template-columns: auto 1fr;
  align-items: center;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.7;
}

.form-note.is-success,
.form-note.is-error {
  padding: 12px 14px;
  border-radius: var(--radius);
}

.form-note.is-success {
  color: #135f3b;
  background: #ecfff6;
  border: 1px solid rgba(19, 95, 59, 0.18);
}

.form-note.is-error {
  color: #9a2d20;
  background: #fff0ec;
  border: 1px solid rgba(154, 45, 32, 0.18);
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 170px 1fr auto;
    gap: 16px;
  }

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

  .footer-copy,
  .page-top {
    grid-column: 1 / -1;
  }

  .desktop-nav {
    gap: 14px;
    font-size: 0.75rem;
  }

  .nav-cta {
    padding: 0 18px;
    font-size: 0.82rem;
  }

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

  .hero-bg {
    width: 100%;
    opacity: 0.35;
  }

  .hero h1,
  .hero h1 strong {
    font-size: 4rem;
  }

  .hero-visual {
    min-height: 420px;
  }

  .growth-board {
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, 620px);
    margin: 0 auto;
  }

  .hero-stats {
    max-width: none;
    margin-left: auto;
  }

  .problem-reason,
  .flow-cases,
  .target-cta,
  .faq-final {
    grid-template-columns: 1fr;
  }

  .reason-panel {
    padding: 28px;
  }

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

  .capability-grid,
  .proof-strip,
  .case-story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-system {
    grid-template-columns: 1fr;
  }

  .premium-grid,
  .premium-grid.three,
  .content-grid,
  .contact-layout,
  .case-rail,
  .heritage-stats,
  .evidence-grid,
  .case-pattern-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body {
    background: var(--paper);
  }

  .site-header {
    position: sticky;
    top: 0;
    left: 0;
    grid-template-columns: 1fr auto;
    width: 100%;
    min-height: 62px;
    padding: 10px 14px;
    border-radius: 0;
    transform: none;
  }

  .menu-toggle {
    display: grid;
  }

  .desktop-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 14px;
    left: 14px;
    display: grid;
    gap: 0;
    padding: 8px;
    background: rgba(255, 255, 255, 0.99);
    border: 1px solid rgba(16, 22, 34, 0.12);
    border-radius: var(--radius);
    box-shadow: 0 18px 44px rgba(6, 22, 49, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    white-space: normal;
    backdrop-filter: blur(16px);
  }

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

  .desktop-nav a {
    padding: 12px 10px;
    border-bottom: 1px solid rgba(16, 22, 34, 0.08);
  }

  .desktop-nav a:last-child {
    border-bottom: 0;
  }

  .desktop-nav a::after {
    display: none;
  }

  .brand-logo {
    width: 142px;
  }

  .nav-cta {
    display: none;
  }

  .nav-cta::after {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 44px 18px 22px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.86)),
      linear-gradient(145deg, rgba(255, 107, 0, 0.14), transparent);
  }

  .hero-grid {
    gap: 22px;
    width: 100%;
    max-width: calc(100vw - 54px);
    min-width: 0;
  }

  .hero-copy {
    max-width: calc(100vw - 54px);
    min-width: 0;
    padding-top: 0;
  }

  .script-label {
    font-size: 1.08rem;
  }

  .hero h1,
  .hero h1 > span,
  .hero h1 > strong {
    font-size: 2.34rem;
    line-height: 1.12;
    white-space: normal;
  }

  .hero h1.h1-long,
  .hero h1.h1-long strong {
    font-size: clamp(2.2rem, 9vw, 2.46rem);
  }

  .hero h1 .h1-chunk {
    white-space: nowrap;
  }

  .hero h1.h1-long .h1-chunk {
    white-space: normal;
  }

  .hero h1 .h1-pair span {
    display: block;
    white-space: nowrap;
  }

  .hero-lead {
    font-size: 0.94rem;
    line-height: 1.82;
    overflow-wrap: break-word;
  }

  .hero-lead .lead-line {
    display: block;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: calc(100vw - 54px);
  }

  .primary-btn,
  .secondary-btn,
  .download-btn {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    padding: 0 18px;
  }

  .hero-visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
    max-width: calc(100vw - 36px);
    min-height: 0;
    padding: 10px;
    overflow: hidden;
  }

  .hero-visual::before {
    inset: 0;
    transform: none;
  }

  .hero-phone,
  .hero-camera,
  .hero-dashboard,
  .growth-board {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: auto;
    min-width: 0;
    transform: none;
  }

  .growth-board {
    width: 100%;
    padding: 18px;
  }

  .growth-board-head {
    display: grid;
    gap: 8px;
  }

  .growth-board-head strong {
    max-width: none;
    text-align: left;
  }

  .execution-table article {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 14px;
  }

  .execution-table span,
  .execution-table b,
  .execution-table p,
  .execution-table strong {
    grid-column: auto;
    grid-row: auto;
  }

  .execution-table strong {
    justify-self: start;
    min-width: 0;
  }

  .board-proof {
    grid-template-columns: 1fr;
  }

  .board-proof span {
    min-height: 0;
  }

  .hero-phone {
    grid-row: auto;
  }

  .hero-phone img {
    height: 214px;
  }

  .hero-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    padding: 10px 0 0;
  }

  .hero-map b {
    min-height: 31px;
    padding: 0 8px;
    font-size: 0.66rem;
  }

  .hero-camera img {
    height: 118px;
  }

  .hero-camera span {
    overflow: hidden;
    font-size: 0.64rem;
    white-space: nowrap;
  }

  .hero-flow {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    min-height: 0;
  }

  .hero-flow i {
    display: none;
  }

  .hero-flow b {
    width: 100%;
    height: 36px;
    border-radius: 6px;
    font-size: 0.66rem;
  }

  .hero-dashboard {
    padding: 13px 12px;
  }

  .hero-dashboard strong {
    font-size: 1.72rem;
  }

  .hero-dashboard span {
    font-size: 0.66rem;
    line-height: 1.45;
    overflow-wrap: break-word;
  }

  .hero-stats,
  .reason-cards,
  .service-grid,
  .capability-grid,
  .proof-strip,
  .case-story-grid,
  .system-map,
  .flow-steps,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 8px;
    margin-top: 10px;
  }

  .hero-stats article {
    min-height: 58px;
  }

  .problem-reason,
  .services,
  .home-intro,
  .home-system,
  .abstract-cases,
  .flow-cases,
  .target-cta,
  .faq-final {
    margin-top: 18px;
    padding: 0 18px;
  }

  .home-intro {
    margin-top: 0;
    padding: 44px 18px;
  }

  .problem-panel,
  .reason-panel,
  .system-copy,
  .flow-panel,
  .cases-panel,
  .target-panel,
  .faq-panel,
  .final-banner,
  .orange-cta {
    padding: 22px;
  }

  .capability-card,
  .system-map article,
  .case-story-grid article,
  .premium-card,
  .detail-card,
  .contact-card,
  .contact-intro,
  .contact-form {
    min-height: 0;
    padding: 20px;
  }

  .system-copy h2 {
    font-size: 1.55rem;
  }

  .proof-strip article {
    min-height: 104px;
  }

  .proof-strip strong {
    font-size: 1.82rem;
  }

  .problem-panel h2,
  .reason-panel h2,
  .section-head h2,
  .target-panel h2,
  .faq-panel h2 {
    font-size: 1.55rem;
  }

  .section-head {
    display: grid;
    gap: 8px;
  }

  .section-head h2 {
    white-space: normal;
  }

  .service-card {
    min-height: 0;
  }

  .service-card img {
    height: 150px;
  }

  .flow-steps article + article::before {
    display: none;
  }

  .orange-cta p {
    font-size: 1.55rem;
  }

  .final-banner {
    min-height: 238px;
  }

  .final-banner p {
    font-size: 1rem;
  }

  .final-banner h2 {
    font-size: 1.95rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 16px;
    padding: 28px 18px;
  }

  .site-footer nav {
    display: grid;
    gap: 10px;
  }

  .page-top {
    position: absolute;
    right: 18px;
    bottom: 24px;
  }

  .page-hero {
    width: 100%;
    min-height: auto;
    padding: 54px 18px 40px;
    overflow: hidden;
  }

  .hero-inner {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero-media {
    width: 100%;
    opacity: 0.18;
  }

  .page-hero h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(1.95rem, 9vw, 2.28rem);
    line-height: 1.18;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .page-lead {
    width: 100%;
    max-width: 100%;
    font-size: 0.94rem;
    line-height: 1.82;
    overflow-wrap: break-word;
  }

  .page-actions,
  .cta-section,
  .footer-nav,
  .footer-social {
    display: grid;
    grid-template-columns: 1fr;
  }

  .section,
  .cta-section {
    width: 100%;
    max-width: 100%;
    margin-top: 18px;
    padding: 0 18px;
    overflow: hidden;
  }

  .cta-section {
    padding: 24px;
  }

  .premium-grid,
  .premium-grid.three,
  .content-grid,
  .contact-layout,
  .case-rail,
  .heritage-stats,
  .evidence-grid,
  .case-pattern-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .case-pattern-grid dl > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .table-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .button,
  .page-actions .button,
  .cta-section .button {
    width: 100%;
    min-width: 0;
    padding: 0 18px;
    white-space: normal;
    text-align: center;
  }

  .premium-card,
  .detail-card,
  .contact-card,
  .contact-intro,
  .contact-form,
  .case-rail article,
  .heritage-stats article,
  .evidence-card,
  .case-pattern-grid article,
  .table-list,
  .table-row,
  .footer-brand,
  .footer-nav,
  .footer-social {
    max-width: 100%;
    min-width: 0;
    overflow-wrap: break-word;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}
