:root {
  --green: #05bd59;
  --teal: #008f78;
  --deep: #008f79;
  --pink: #ee7e9c;
  --ink: #333;
  --gray: #eeeeee;
  --line: #0abf64;
  --pattern: url("./assets/figma-20.png");
  font-family: "Noto Sans JP", system-ui, sans-serif;
  color: var(--ink);
  scroll-behavior: smooth;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body { min-width: 320px; background: #e9eceb; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }

.page {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 24px rgb(0 66 48 / 12%);
}

.desktop-rail { display: none; }

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  background: rgb(255 255 255 / 96%);
  backdrop-filter: blur(10px);
}

.logo { display: inline-flex; align-items: center; gap: 6px; font-size: 16px; font-weight: 800; }
.logo__mark { color: #20ad75; font-size: 24px; }
.header__right { display: flex; align-items: center; gap: 8px; }
.header__cta {
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  background: linear-gradient(90deg, var(--green), var(--teal));
  border-radius: 999px;
}
.header__cta img {
  width: 21px;
  height: 17px;
  object-fit: contain;
}

.menu-button {
  width: 34px; height: 38px; padding: 7px 2px;
  display: grid; align-content: center; gap: 5px;
  background: transparent; border: 0; cursor: pointer;
}
.menu-button span { height: 3px; background: var(--teal); border-radius: 4px; transition: .25s; }
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.menu-button[aria-expanded="true"]::after {
  position: absolute;
  top: 50px;
  right: 10px;
  content: "CLOSE";
  color: var(--teal);
  font-size: 10px;
  font-weight: 800;
}

.menu {
  position: fixed;
  z-index: 25;
  top: 70px;
  left: 50%;
  width: min(430px, 100vw);
  height: calc(100dvh - 70px);
  min-height: 590px;
  padding: 88px 31px 36px;
  overflow-y: auto;
  background:
    linear-gradient(rgb(255 255 255 / 79%), rgb(255 255 255 / 96%)),
    var(--pattern) center -20px / 375px auto no-repeat,
    #fff;
  box-shadow: -6px 6px 6px rgb(0 0 0 / 30%);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -14px);
  transition: .25s;
}
.menu.is-open { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
.menu__links { width: 100%; max-width: 312px; margin: 0 auto; }
.menu__links > a {
  min-height: 50px;
  padding: 12px 0;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) 8px;
  align-items: center;
  gap: 15px;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  border-bottom: 1px solid #ededed;
}
.menu__links > a > img:first-child {
  width: 20px;
  height: 22px;
  object-fit: contain;
}
.menu__links > a:nth-child(3) span { white-space: nowrap; font-size: 14px; }
.menu__links .menu__arrow {
  width: 8px;
  height: 13px;
  object-fit: contain;
}
.menu__company-icon {
  width: 18px;
  height: 22px;
  padding: 3px 2px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--teal);
}
.menu__company-icon i { display: block; background: #fff; }
.menu__contact { width: 100%; max-width: 312px; margin: 30px auto 0; text-align: center; }
.menu__contact p {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 16px;
  font-weight: 800;
}
.menu__contact p span { margin-inline: 7px; }
.menu__contact > a {
  width: 100%;
  min-height: 51px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  background: linear-gradient(90deg, var(--green), var(--teal));
  border-radius: 38px;
}
.menu__contact > a img { width: 31px; height: 25px; flex: 0 0 auto; object-fit: contain; }

.hero {
  position: relative;
  min-height: 543px;
  padding: 0 12px 40px;
  overflow: hidden;
}
.hero__label {
  width: 242px; margin-left: -12px; padding: 7px 20px 8px;
  color: #fff; font-size: 17px; font-weight: 800;
  background: linear-gradient(90deg, var(--green), var(--teal));
  box-shadow: 4px 4px #d8d0d0;
}
.hero h1 { position: relative; z-index: 2; margin: 8px 0 4px; font-size: 37px; line-height: 1.42; letter-spacing: -.06em; }
.hero h1 span { font-size: 43px; }
.hero h1 strong { color: transparent; background: linear-gradient(90deg, var(--green), var(--teal)); background-clip: text; -webkit-background-clip: text; }
.hero__lead { position: relative; z-index: 2; margin: 0; font-size: 14px; line-height: 1.7; }
.hero__image {
  width: calc(100% + 24px);
  max-width: none;
  height: clamp(242px, 64.5vw, 310px);
  margin: -2px -12px 12px;
  object-fit: cover;
  object-position: center 50%;
}

.gradient-button {
  width: 100%; min-height: 55px; display: flex; align-items: center; justify-content: center; gap: 14px;
  color: #fff; font-size: 18px; font-weight: 800;
  background: linear-gradient(90deg, var(--green), var(--teal)); border-radius: 999px;
  box-shadow: 0 7px 15px rgb(0 143 120 / 17%);
  transition: transform .2s, filter .2s;
}
.gradient-button:hover { transform: translateY(-2px); filter: brightness(1.05); }
.hero > .gradient-button img {
  width: 32px;
  height: 25px;
  flex: 0 0 auto;
  object-fit: contain;
}

.section { padding: 50px 12px; }
.gray-section {
  background:
    linear-gradient(135deg, transparent 0 88%, rgb(255 255 255 / 35%) 88% 90%, transparent 90%) top right / 90px 90px no-repeat,
    #ededed;
}
.patterned { background: #fff var(--pattern) center top / cover; }
.section-heading { text-align: center; }
.section-heading__en {
  display: block; width: 228px; margin: 0 auto 18px; padding: 3px 10px 4px;
  color: #fff; font-size: 15px; line-height: 1; font-style: italic; font-weight: 800;
  background: var(--green); transform: skewX(-18deg);
}
.section-heading h2 { margin: 0; font-size: 25px; line-height: 1.45; }
.section-heading > p { margin: 14px 0 0; font-size: 13px; }

.worries { min-height: 990px; padding-inline: 15px; }
.worry-list { display: grid; gap: 10px; margin-top: 34px; }
.worry-card {
  min-height: 96px; padding: 10px 17px;
  display: flex; align-items: center; gap: 22px;
  background: #fff; border-radius: 8px; border-bottom: 3px solid var(--line);
}
.worry-card img { width: 64px; height: 64px; object-fit: contain; }
.worry-card p { margin: 0; font-size: 13px; line-height: 1.55; }
.worry-card strong { color: var(--teal); }
.worries__answer { margin-top: 23px; text-align: center; line-height: 1.35; }
.worries__answer p { margin: 0 0 2px; font-size: 15px; font-weight: 700; }
.worries__emphasis { margin-inline: 2px; font-size: 31px; }
.worries__answer strong {
  position: relative;
  display: block;
  color: var(--teal);
  font-size: 29px;
}
.worries__answer strong:first-of-type::before {
  position: absolute;
  left: calc(50% - 128px);
  top: -8px;
  width: 31px;
  height: 30px;
  content: "";
  background:
    linear-gradient(var(--green), var(--green)) 50% 0 / 4px 13px no-repeat,
    linear-gradient(45deg, transparent 39%, var(--green) 40% 60%, transparent 61%) 1px 7px / 13px 13px no-repeat,
    linear-gradient(90deg, var(--green), var(--green)) 0 22px / 13px 4px no-repeat;
  transform: rotate(-24deg);
}
.down-arrows {
  width: 44px;
  height: 41px;
  margin: 12px auto 0;
  position: relative;
  display: block;
  color: transparent;
  font-size: 0;
}
.down-arrows::before,
.down-arrows::after {
  position: absolute;
  left: 8px;
  width: 27px;
  height: 27px;
  content: "";
  border-right: 4px solid var(--teal);
  border-bottom: 4px solid var(--teal);
  border-radius: 2px;
  transform: rotate(45deg);
}
.down-arrows::before { top: -8px; }
.down-arrows::after { top: 5px; }

.service-list { display: grid; gap: 14px; margin-top: 28px; }
.service-card {
  padding: 19px 10px 20px;
  text-align: center; background: #fff;
  border: 3px solid var(--teal); border-radius: 7px;
}
.service-card h3 { margin: 0; color: var(--teal); font-size: 20px; }
.tag { display: table; margin: 2px auto 8px; padding: 1px 12px; color: var(--teal); font-size: 14px; border: 1px solid var(--teal); }
.service-card img { width: 175px; height: 112px; margin: 0 auto 9px; object-fit: contain; }
.service-card p { min-height: 78px; margin: 0 0 14px; text-align: left; font-size: 12px; line-height: 1.75; }
.service-card a {
  width: 84%; min-height: 43px; margin: auto;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 14px; font-weight: 800; background: linear-gradient(90deg, var(--green), var(--teal)); border-radius: 999px;
}

.strengths-heading h2 { margin-top: 20px; font-size: 24px; }
.strengths .big-subtitle {
  width: 218px;
  height: 50px;
  margin: 5px auto 0;
  position: relative;
}
.strengths .big-subtitle img {
  position: absolute;
  display: block;
  object-fit: fill;
}
.strengths .big-subtitle__fill {
  width: 212px;
  height: 44px;
  left: 3px;
  top: 3px;
}
.strengths .big-subtitle__stroke {
  width: 218px;
  height: 50px;
  left: 0;
  top: 0;
}
.strengths .big-subtitle::after {
  position: absolute;
  right: -28px;
  top: -8px;
  content: "///";
  color: var(--green);
  font-size: 22px;
  letter-spacing: -6px;
  -webkit-text-stroke: 0;
  transform: rotate(-58deg);
}
.strength-list { display: grid; gap: 38px; margin-top: 30px; }
.strength-card { position: relative; }
.strength-card .number {
  position: absolute; left: -8px; top: -20px; z-index: 2;
  width: 54px; height: 54px; display: grid; place-content: center;
  color: #fff; font-size: 6px; line-height: 1; text-align: center; background: var(--teal); border-radius: 50%; transform: rotate(-14deg);
}
.strength-card .number strong { display: block; font-size: 25px; }
.strength-card h3 { position: relative; z-index: 2; margin: 0; padding-top: 10px; text-align: center; color: var(--teal); font-size: 19px; }
mark { background: #ebff00; color: inherit; }
.strength-card img { width: 100%; height: 205px; margin-top: -3px; padding: 22px 25px 0; object-fit: contain; background: #fff; border-radius: 8px; }
.metric { display: table; margin: -2px 0 9px; padding: 4px 15px; color: #fff; font-size: 12px; font-weight: 700; background: var(--teal); }
.strength-card p { margin: 0; font-size: 12px; line-height: 1.8; }

.achievement-list { display: grid; gap: 14px; margin-top: 26px; }
.achievement-list article {
  height: 145px; padding: 10px 20px;
  display: flex; align-items: center;
  background: #fff; border: 3px solid var(--teal); border-radius: 7px;
}
.achievement-list img { width: 45%; height: 115px; padding: 4px; object-fit: contain; }
.achievement-list p { flex: 1; margin: 0; color: var(--teal); font-size: 15px; font-weight: 800; text-align: center; }
.achievement-list strong { display: block; padding: 2px; color: var(--teal); font-size: 39px; line-height: 1.2; background: #efff00; }
.achievement-list small { font-size: 17px; }

.flow-list { display: grid; gap: 22px; margin-top: 24px; }
.flow-list article {
  position: relative; min-height: 180px; padding: 22px 15px 16px;
  display: grid; grid-template-columns: 80px 1fr; gap: 7px;
  background: #fff; border-radius: 8px; border-bottom: 3px solid var(--line);
}
.flow-list article:not(:last-child)::after {
  position: absolute; left: 50%; bottom: -23px; content: ""; transform: translateX(-50%);
  border-left: 12px solid transparent; border-right: 12px solid transparent; border-top: 20px solid var(--green);
}
.flow-list img { width: 70px; height: 68px; object-fit: contain; }
.flow-list b { color: var(--teal); font-size: 12px; }
.flow-list h3 { margin: 3px 0 14px; color: var(--teal); font-size: 19px; }
.flow-list p { grid-column: 1 / -1; margin: 0; font-size: 12px; line-height: 1.75; }
.headset {
  width: 76px;
  height: 76px;
  position: relative;
}
.headset__band {
  width: 50px;
  height: 49px;
  position: absolute;
  display: block;
  left: 13px;
  top: 7px;
  border: 4px solid var(--green);
  border-bottom: 0;
  border-radius: 30px 30px 0 0;
}
.headset__band::before,
.headset__band::after {
  width: 13px;
  height: 27px;
  position: absolute;
  top: 24px;
  content: "";
  background: #fff;
  border: 4px solid var(--green);
  border-radius: 8px;
}
.headset__band::before { left: -9px; }
.headset__band::after { right: -9px; }
.headset__mic {
  width: 29px;
  height: 17px;
  position: absolute;
  display: block;
  left: 33px;
  top: 43px;
  z-index: 3;
  border-right: 4px solid var(--green);
  border-bottom: 4px solid var(--green);
  border-radius: 0 0 11px;
}
.headset__mic::after {
  width: 7px;
  height: 7px;
  position: absolute;
  left: -3px;
  bottom: -5px;
  content: "";
  background: var(--green);
  border-radius: 50%;
}
.headset__rays {
  width: 3px;
  height: 13px;
  position: absolute;
  display: block;
  right: 10px;
  top: -2px;
  background: #f3ca38;
  border-radius: 3px;
  transform: rotate(18deg);
}
.headset__rays::before,
.headset__rays::after {
  width: 3px;
  position: absolute;
  content: "";
  background: #f3ca38;
  border-radius: 3px;
}
.headset__rays::before {
  height: 10px;
  left: 9px;
  top: 5px;
  transform: rotate(24deg);
}
.headset__rays::after {
  height: 8px;
  left: 16px;
  top: 13px;
  transform: rotate(40deg);
}

.subsidy { text-align: center; }
.subsidy-heading { margin-bottom: 26px; }
.ribbon {
  width: 250px;
  margin: 0 auto 16px;
  padding: 6px 34px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  background: var(--teal);
  clip-path: polygon(0 0, 9% 0, 9% 14%, 91% 14%, 91% 0, 100% 0, 94% 50%, 100% 100%, 75% 100%, 75% 86%, 25% 86%, 25% 100%, 0 100%, 6% 50%);
}
.subsidy-heading h2 { margin: 0; font-size: 31px; line-height: 1.45; }
.subsidy-heading__dx {
  width: 155px;
  height: 48px;
  display: inline-block;
  vertical-align: -10px;
  object-fit: fill;
}
.subsidy__lead { margin: 14px 0 0; font-size: 12px; }
.subsidy-card, .target-card { margin-bottom: 15px; background: #fff; border: 3px solid var(--teal); border-radius: 6px; overflow: hidden; text-align: left; }
.subsidy-card h3 {
  min-height: 58px;
  margin: 0;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  font-size: 16px;
  text-align: center;
  background: var(--teal);
}
.subsidy-title-icon {
  width: 45px;
  height: 40px;
  position: relative;
  display: inline-block;
  flex: 0 0 45px;
}
.subsidy-title-icon--factory {
  width: 45px;
  height: 41px;
  flex: 0 0 45px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.subsidy-title-icon--it > img:first-child {
  width: 38px;
  height: 29px;
  position: absolute;
  left: 0;
  top: 2px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.subsidy-title-icon > img:last-child {
  width: 21px;
  height: 21px;
  position: absolute;
  right: 0;
  bottom: 0;
  object-fit: contain;
  border: 1px solid #fff;
  border-radius: 50%;
}
.mini-building {
  width: 34px;
  height: 31px;
  padding: 8px 4px 4px;
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  background: #fff;
  clip-path: polygon(0 35%, 30% 35%, 30% 0, 42% 0, 42% 24%, 100% 24%, 100% 100%, 0 100%);
}
.mini-building i { background: var(--teal); }
.subsidy-card > p { margin: 13px 0 6px; color: var(--teal); text-align: center; font-size: 15px; font-weight: 800; }
.subsidy-card > p strong { font-size: 36px; background: #efff00; }
.subsidy-card small { font-size: 16px; }
.subsidy-card ul, .target-card ul { margin: 8px 16px 16px; padding: 0; list-style: none; }
.subsidy-card li, .target-card li { margin: 7px 0; color: var(--teal); font-size: 13px; font-weight: 700; }
.subsidy-card li::before { content: "●"; margin-right: 7px; color: #ee7692; }
.target-card { margin-top: 20px; padding: 7px 8px; }
.target-card h3 {
  margin: 0 8px;
  padding-bottom: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--teal);
  text-align: center;
  font-size: 16px;
  border-bottom: 2px dashed #d6e6e1;
}
.target-building {
  width: 22px;
  height: 28px;
  padding: 4px 3px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  border: 3px solid var(--teal);
}
.target-building i { background: var(--teal); }
.target-card li::before { content: "✓"; margin-right: 12px; color: #f1809d; }
.subsidy > .gradient-button { margin-top: 20px; }
.subsidy > .gradient-button img {
  width: 31px;
  height: 25px;
  flex: 0 0 auto;
  object-fit: contain;
}

.cases { padding-inline: 0; }
.cases .section-heading { padding-inline: 12px; }
.case-slider {
  display: flex; gap: 14px; margin-top: 24px; padding: 0 20px 12px;
  overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
}
.case-slider::-webkit-scrollbar { display: none; }
.case-card {
  flex: 0 0 295px; min-height: 700px; padding: 20px;
  scroll-snap-align: center; background: #fff; border-radius: 8px;
}
.case-card header { display: flex; align-items: center; gap: 15px; }
.case-card header > span { width: 59px; height: 59px; display: grid; place-content: center; color: #fff; font-size: 8px; text-align: center; background: var(--teal); border-radius: 50%; }
.case-card header > span strong { display: block; font-size: 23px; }
.case-card header p { margin: 0; }
.case-card header b { display: block; color: var(--teal); font-size: 18px; }
.case-card header small { display: block; font-size: 12px; }
.case-card > img { width: 100%; height: 150px; margin: 18px 0; object-fit: contain; }
.case-card h3 { margin: 0 0 18px; text-align: center; font-size: 17px; line-height: 1.6; }
.case-card .before, .case-card .after { display: table; min-width: 106px; margin: 0 0 8px; padding: 4px 14px; color: #fff; font-size: 13px; text-align: center; background: var(--teal); }
.case-card .after { margin-top: 18px; background: var(--pink); }
.case-card > p { margin: 0; font-size: 12px; line-height: 1.7; }
.case-card > p strong { color: var(--teal); }
.case-card--social h3 {
  position: relative;
  padding: 0 10px;
  font-size: 15px;
  line-height: 1.45;
}
.case-card--social h3 strong { color: var(--teal); }
.case-card--social h3::before,
.case-card--social h3::after {
  position: absolute;
  bottom: 0;
  width: 12px;
  height: 12px;
  content: "";
  border-bottom: 3px solid var(--teal);
}
.case-card--social h3::before {
  top: 0;
  bottom: auto;
  left: 0;
  border-top: 3px solid var(--teal);
  border-bottom: 0;
  border-left: 3px solid var(--teal);
}
.case-card--social h3::after {
  right: 0;
  border-right: 3px solid var(--teal);
}
.slider-dots { display: flex; justify-content: center; gap: 7px; margin-top: 8px; }
.slider-dots i { width: 7px; height: 7px; background: #b8c7c2; border-radius: 50%; }
.slider-dots i:first-child { width: 20px; background: var(--teal); border-radius: 8px; }

.contact { padding: 44px 12px; color: #fff; text-align: center; background: var(--teal); }
.contact h2 { margin: 0 0 20px; font-size: 27px; color: var(--teal); text-shadow: -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, 2px 2px 0 #fff; }
.contact h3 { margin: 0; font-size: 20px; }
.contact p { font-size: 12px; line-height: 1.7; }
.contact a { min-height: 55px; display: flex; align-items: center; justify-content: center; gap: 13px; color: var(--teal); font-size: 17px; font-weight: 800; background: #fff; border-radius: 999px; }
.contact a img {
  width: 32px;
  height: 25px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(37%) sepia(72%) saturate(913%) hue-rotate(130deg) brightness(85%);
}

.footer { background: #fff var(--pattern) center top / cover; }
.footer__nav { padding: 30px 20px; }
.footer__nav nav { display: grid; gap: 8px; margin-top: 18px; }
.footer__nav nav a { font-size: 12px; }
.footer__nav nav a::before {
  width: 14px;
  height: 14px;
  margin-right: 8px;
  display: inline-block;
  vertical-align: -2px;
  content: "";
  background:
    linear-gradient(45deg, transparent 39%, #fff 40% 60%, transparent 61%) 4px 3px / 6px 6px no-repeat,
    linear-gradient(135deg, transparent 39%, #fff 40% 60%, transparent 61%) 4px 7px / 6px 6px no-repeat,
    var(--teal);
  border-radius: 50%;
}
.footer__company { padding: 22px 18px 28px; color: #fff; font-size: 12px; line-height: 1.7; background: #16977e; }
.footer__company p { margin: 6px 0; }
.footer__business { white-space: nowrap; }
.footer__company small { display: block; margin-top: 28px; text-align: center; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (min-width: 960px) {
  .menu-button {
    display: none;
  }

  body {
    position: relative;
    background:
      linear-gradient(135deg, rgb(68 197 83 / 96%), rgb(38 136 119 / 98)),
      #318f7c;
  }

  body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    content: "";
    background:
      linear-gradient(120deg, rgb(255 255 255 / 8%), transparent 45%),
      var(--pattern) center / min(100%, 1920px) auto repeat-y;
    opacity: .26;
    pointer-events: none;
  }

  .page {
    max-width: 480px;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 32px rgb(0 61 47 / 23%);
  }

  .desktop-rail {
    position: fixed;
    z-index: 1;
    top: 0;
    bottom: 0;
    width: calc((100vw - 480px) / 2);
    display: flex;
    align-items: center;
    color: #fff;
    pointer-events: none;
  }

  .desktop-rail--left {
    left: 0;
    justify-content: flex-end;
  }

  .desktop-rail--right {
    right: 0;
    justify-content: flex-start;
  }

  .desktop-rail__inner {
    width: min(100%, 430px);
    height: min(760px, calc(100dvh - 40px));
    padding: 64px clamp(8px, 2.2vw, 42px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    pointer-events: auto;
  }

  .desktop-rail--left .desktop-rail__inner {
    align-items: center;
  }

  .desktop-brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    font-size: clamp(18px, 1.5vw, 28px);
    font-weight: 900;
  }

  .desktop-brand span {
    font-size: 32px;
  }

  .desktop-nav {
    width: min(220px, 100%);
    margin-top: 30px;
    display: grid;
    gap: 15px;
  }

  .desktop-nav a {
    display: flex;
    align-items: center;
    gap: 11px;
    color: rgb(255 255 255 / 92%);
    font-size: 14px;
    font-weight: 700;
    transition: color .2s, transform .2s;
  }

  .desktop-nav a span {
    position: relative;
    width: 17px;
    height: 17px;
    display: inline-grid;
    place-content: center;
    color: var(--teal);
    font-size: 0;
    background: #fff;
    border-radius: 50%;
    transition: background .2s, color .2s;
  }

  .desktop-nav a span::before {
    width: 6px;
    height: 6px;
    margin-left: -2px;
    content: "";
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
  }

  .desktop-nav a:hover,
  .desktop-nav a.is-current {
    color: #fff;
    transform: translateX(5px);
  }

  .desktop-nav a.is-current span {
    color: #fff;
    background: #004f45;
  }

  .desktop-rail__robot {
    width: 149px;
    height: 258px;
    margin: auto auto 0;
    object-fit: contain;
    filter: drop-shadow(0 16px 20px rgb(0 83 65 / 16%));
    animation: desktop-float 4s ease-in-out infinite;
  }

  .desktop-rail--right .desktop-rail__inner {
    justify-content: center;
  }

  .desktop-rail--right p {
    margin: 0 0 28px;
    padding-left: 62px;
    font-size: clamp(20px, 2vw, 27px);
    font-weight: 800;
    line-height: 1.45;
  }

  .desktop-rail--right p strong {
    color: #fff400;
    font-weight: inherit;
  }

  .desktop-contact {
    width: min(304px, 100%);
    min-height: 72px;
    margin-bottom: 28px;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--teal);
    font-size: 20px;
    font-weight: 800;
    background: #fff;
    border-radius: 999px;
    box-shadow: 0 7px 0 rgb(0 78 66 / 45%), 0 12px 24px rgb(0 69 54 / 14%);
    transition: transform .2s, box-shadow .2s;
  }

  .desktop-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 9px 0 rgb(0 78 66 / 42%), 0 15px 28px rgb(0 69 54 / 18%);
  }

  .desktop-contact--mail img {
    width: 35px;
    height: 28px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(37%) sepia(72%) saturate(913%) hue-rotate(130deg) brightness(85%);
  }

  .desktop-rail__laptop {
    width: min(220px, 100%);
    height: 170px;
    margin: 70px auto 0 5px;
    object-fit: contain;
    filter: drop-shadow(0 14px 20px rgb(0 70 57 / 16%));
    animation: desktop-float 4.5s .5s ease-in-out infinite;
  }

  @keyframes desktop-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
}

@media (min-width: 960px) and (max-height: 720px) {
  .desktop-rail__inner { padding-block: 35px; }
  .desktop-nav { margin-top: 20px; gap: 10px; }
  .desktop-rail__robot { width: 112px; height: 194px; }
  .desktop-rail__laptop { width: 170px; height: 125px; margin-top: 35px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .desktop-rail__robot,
  .desktop-rail__laptop { animation: none; transition: none; }
}

@media (min-width: 431px) {
  .page { margin-block: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  :root { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
