:root {
  --blue: #0080d9;
  --blue-light: #eaf7fe;
  --panel: #eff6f7;
  --ink: #00171d;
  --muted: #6b7a80;
  --line: rgba(0, 128, 217, 0.14);
  --radius: 8px;
  --side: clamp(20px, 5vw, 72px);
  --content: 1280px;
  --header: 100px;
  font-family: "Lato", "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
  line-height: 1;
}

body.with-loader {
  overflow: hidden;
}

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

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

.page-loader {
  --loader-progress: 0%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  z-index: 1000;
  display: grid;
  place-items: center;
  pointer-events: none;
  overflow: hidden;
  transition: opacity 0.82s ease 0.18s, visibility 0s linear 1.12s;
}

.page-loader::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 6% 100%, rgba(124, 227, 230, 0.28) 0 16%, transparent 40%),
    radial-gradient(circle at 100% 92%, rgba(124, 227, 230, 0.35) 0 18%, transparent 42%),
    #fffdf7;
  transition: opacity 0.82s ease 0.12s;
}

.page-loader.is-leaving {
  opacity: 0;
  visibility: hidden;
}

.page-loader.is-leaving::before {
  opacity: 0;
}

.loader-brand {
  position: absolute;
  top: calc(50% + clamp(126px, 14vw, 218px));
  left: calc(50vw + var(--loader-brand-shift));
  z-index: 2;
  display: grid;
  justify-items: center;
  transform: translate3d(-50%, 0, 0);
  width: min(280px, 46vw);
  text-align: center;
  transition: opacity 0.45s ease, transform 0.75s ease;
}

.loader-brand img {
  width: min(180px, 32vw);
  height: auto;
  margin: 28px auto 0;
}

.loader-progress {
  width: 100%;
  height: 4px;
  margin: 0 auto;
  border-radius: 999px;
  background: rgba(0, 128, 217, 0.13);
  display: block;
  overflow: hidden;
}

.loader-progress span {
  width: var(--loader-progress);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #0078d6, #77e0e2);
  display: block;
  transition: width 0.28s ease;
}

.page-loader.is-complete .loader-progress span {
  transition-duration: 0.42s;
}

.page-loader.is-leaving .loader-brand {
  opacity: 0;
  transform: translate(-50%, -16px);
}

.loader-dot {
  border-radius: 50%;
  position: absolute;
  display: block;
  z-index: 1;
  transition: opacity 0.8s ease, transform 1.05s ease;
}

.loader-dot-blue {
  width: clamp(58px, 5.4vw, 86px);
  height: clamp(58px, 5.4vw, 86px);
  background: linear-gradient(180deg, #64b8ff, #3f9ee8);
  top: 9.2%;
  left: 11.8%;
}

.loader-dot-small {
  width: clamp(42px, 3.9vw, 62px);
  height: clamp(42px, 3.9vw, 62px);
  background: #83e3e6;
  left: 16.7%;
  bottom: 15.2%;
}

.loader-dot-mint {
  width: clamp(58px, 5.5vw, 86px);
  height: clamp(58px, 5.5vw, 86px);
  background: #9ae9e8;
  right: 6.2%;
  bottom: 23.4%;
}

.page-loader.is-leaving .loader-dot {
  opacity: 0;
  transform: scale(0.82);
}

body.with-loader .site-header {
  opacity: 0;
}

body.with-loader {
  --loader-title-shift: clamp(22px, 2.3vw, 34px);
  --loader-brand-shift: clamp(10px, 1.1vw, 16px);
}

body.with-loader .intro-flow {
  z-index: 1100;
}

body.with-loader .hero {
  z-index: 1100;
}

body.with-loader .hero-photo,
body.with-loader .hero-shade,
body.with-loader .scroll-sign,
body.with-loader .section-with-lines::before,
body.with-loader .section-with-lines::after {
  opacity: 0;
}

body.with-loader .motion-copy {
  opacity: 0;
  visibility: hidden;
}

body.with-loader .hero h1 {
  color: #333;
  font-size: clamp(36px, 4.4vw, 70px);
  font-weight: 800;
  line-height: 1.8;
  letter-spacing: 0.03em;
  width: max-content;
  max-width: calc(100vw - 48px);
  text-align: left;
  position: fixed;
  top: 50%;
  left: calc(50vw + var(--loader-title-shift));
  margin: 0;
  z-index: 1200;
  transform: translate3d(-50%, -50%, 0) scale(1);
  transform-origin: center center;
  will-change: transform;
}

body.with-loader .hero h1.hero-title-probe {
  color: inherit;
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.8;
  width: auto;
  max-width: none;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: relative;
  top: auto;
  left: auto;
  margin: 0 0 0 clamp(12px, 4vw, 72px);
  z-index: -1;
  transform: none;
}

body.loader-revealing .site-header {
  opacity: 0;
  transition: none;
}

body.loader-finished .site-header {
  animation: headerFadeIn 0.62s ease both;
}

body.loader-revealing .hero-photo,
body.loader-revealing .hero-shade {
  opacity: 1;
  transition: opacity 0.9s ease 0.12s;
}

body.loader-revealing .hero h1 {
  opacity: 1;
  transition: none;
}

@keyframes headerFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.site-header {
  width: 100%;
  height: var(--header);
  padding: 0 var(--side);
  border-bottom: 1px solid rgba(0, 128, 217, 0.16);
  background: transparent;
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  transition: height 0.35s ease, background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease, transform 0.35s ease;
}

.site-header.is-scrolled {
  height: 76px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 38px rgba(0, 37, 54, 0.08);
}

@media (min-width: 768px) {
  .site-header.is-hidden {
    transform: translateY(-100%);
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.brand-logo-img {
  width: clamp(144px, 15vw, 190px);
  height: auto;
  transition: width 0.35s ease;
}

.site-header.is-scrolled .brand-logo-img {
  width: clamp(132px, 12vw, 164px);
}

.brand-mark {
  width: 36px;
  flex: 0 0 auto;
}

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

.brand-mark-blue {
  fill: var(--blue);
}

.brand-mark-dark {
  fill: var(--ink);
}

.brand-text {
  font-size: clamp(22px, 2vw, 27px);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
  font-size: 14px;
  font-weight: 700;
  margin-left: auto;
}

.primary-nav a {
  white-space: nowrap;
}

.header-contact,
.pill-button {
  min-height: 58px;
  min-width: 160px;
  padding: 0 34px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, background 0.25s ease;
}

.header-contact:hover,
.pill-button:hover {
  background: #006ebd;
  transform: translateY(-2px);
}

.menu-button {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  display: none;
}

.menu-button span {
  width: 26px;
  height: 2px;
  margin: 6px auto;
  background: var(--blue);
  display: block;
}

.section-with-lines {
  position: relative;
  overflow: clip;
}

.section-with-lines::before,
.section-with-lines::after {
  content: "";
  width: min(130vw, 1700px);
  aspect-ratio: 2.15 / 1;
  border: clamp(34px, 6vw, 88px) solid rgba(0, 128, 217, 0.055);
  border-radius: 50%;
  position: absolute;
  pointer-events: none;
  z-index: 0;
  transform: rotate(-31deg);
}

.section-with-lines::before {
  top: -18%;
  left: -28%;
}

.section-with-lines::after {
  right: -34%;
  bottom: -26%;
  opacity: 0.65;
}

.intro-flow {
  position: relative;
  z-index: 1;
}

.motion-copy {
  width: min(1180px, calc(100% - var(--side) * 2));
  position: fixed;
  top: calc(100svh - clamp(170px, 21vw, 278px));
  left: var(--side);
  z-index: 8;
  opacity: 0;
  transform: translate3d(0, var(--motion-y, 0px), 0);
  transition: opacity 0.18s ease;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 0.83;
  pointer-events: none;
  will-change: transform, opacity;
}

.motion-copy .love {
  color: rgba(0, 128, 217, 0.62);
  display: block;
  font-size: clamp(74px, 14vw, 170px);
}

.motion-copy .technology {
  color: rgba(0, 23, 29, 0.62);
  display: block;
  font-size: clamp(70px, 13.5vw, 166px);
}

.hero {
  min-height: 100svh;
  padding: calc(var(--header) + 110px) var(--side) 0;
  display: flex;
  align-items: flex-start;
  isolation: isolate;
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: -3;
}

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

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.86) 0%, rgba(255,255,255,0.5) 38%, rgba(255,255,255,0.02) 78%),
    linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.04) 54%, rgba(0,128,217,0.2) 100%);
}

.hero h1 {
  margin: 0 0 0 clamp(12px, 4vw, 72px);
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.8;
  position: relative;
  z-index: 2;
}

.hero h1 > span {
  display: inline-block;
}

.scroll-sign {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.08em;
  writing-mode: vertical-rl;
  position: absolute;
  right: 34px;
  bottom: 76px;
  z-index: 2;
}

.scroll-sign::after {
  content: "";
  width: 1px;
  height: 80px;
  background: #fff;
  position: absolute;
  top: 62px;
  left: 50%;
  animation: scrollLine 2.4s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% {
    height: 0;
    opacity: 0;
  }
  35% {
    height: 80px;
    opacity: 1;
  }
}

.about {
  min-height: 980px;
  padding: clamp(370px, 43vw, 520px) var(--side) 170px;
}

.about-text,
.photo-rail {
  position: relative;
  z-index: 2;
}

.about-text {
  width: min(570px, 100%);
  margin: 0 max(0px, calc((100vw - var(--content)) / 2)) 0 auto;
  font-size: 16px;
  font-weight: 700;
  line-height: 2.1;
}

.about-text p {
  margin: 0;
}

.about-text p + p {
  margin-top: 22px;
}

.about-text .pill-button {
  margin-top: 44px;
}

.photo-rail {
  margin-top: 120px;
  margin-inline: calc(var(--side) * -1);
  overflow: hidden;
}

.rail-track {
  width: max-content;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  animation: railMove 36s linear infinite;
}

.rail-track img {
  width: clamp(210px, 25vw, 420px);
  height: clamp(285px, 33vw, 520px);
  border-radius: var(--radius);
  object-fit: cover;
}

.rail-track img:nth-child(2n) {
  width: clamp(190px, 21vw, 320px);
  height: clamp(250px, 29vw, 430px);
  margin-top: 56px;
}

.rail-track img:nth-child(3n) {
  margin-top: 18px;
}

@keyframes railMove {
  to {
    transform: translateX(-50%);
  }
}

.light-panel {
  margin-top: 0;
  padding: 168px var(--side);
  background: var(--panel);
  border-radius: 200px 0 0 0;
}

.section-grid {
  max-width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 96px 0;
  position: relative;
  z-index: 2;
}

.section-heading {
  padding-left: 48px;
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.4;
  position: relative;
}

.eyebrow::before {
  content: "";
  width: 14px;
  height: 14px;
  background: linear-gradient(135deg, var(--blue) 0 50%, transparent 50%), linear-gradient(315deg, var(--blue) 0 50%, transparent 50%);
  position: absolute;
  top: 3px;
  left: -30px;
  transform: rotate(45deg);
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(64px, 7vw, 92px);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.05;
}

.section-heading > p:not(.eyebrow) {
  max-width: 640px;
  margin: 42px 0 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.9;
}

.section-button {
  place-self: end center;
}

.service-cards {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
}

.service-card {
  min-height: 410px;
  border-radius: var(--radius);
  overflow: hidden;
  color: #fff;
  position: relative;
  isolation: isolate;
}

.service-card-link {
  width: 100%;
  min-height: inherit;
  color: inherit;
  display: block;
  position: relative;
  isolation: isolate;
}

.service-card-large {
  min-height: 450px;
  grid-column: 1 / -1;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: -3;
  transition: transform 0.55s ease;
}

.service-card-link img {
  z-index: -3;
}

.service-card:hover img {
  transform: scale(1.04);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.66));
  z-index: -1;
}

.card-blue-curve {
  width: 72%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: rgba(0, 128, 217, 0.92);
  filter: drop-shadow(0 0 34px rgba(0,128,217,0.28));
  position: absolute;
  top: -38%;
  left: -26%;
  z-index: -2;
}

.service-card-content {
  min-height: inherit;
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.service-card-content span {
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 900;
}

.service-card-content h3 {
  margin: 0;
  font-size: clamp(22px, 2.1vw, 30px);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.55;
}

.service-card-content p {
  max-width: 560px;
  margin: auto 72px 0 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}

.round-arrow,
.news-arrow {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 300;
}

.service-card .round-arrow {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
}

.brand-loop {
  padding: 150px 0;
  overflow: hidden;
}

.brand-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 128px;
  animation: brandMove 28s linear infinite;
}

.brand-track img {
  width: clamp(300px, 34vw, 560px);
  height: auto;
  flex: 0 0 auto;
}

.brand-track span:not(.loop-mark) {
  font-size: clamp(54px, 6vw, 84px);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.loop-mark {
  width: 96px;
}

.footer-logo .brand-logo-img {
  width: clamp(168px, 18vw, 230px);
}

@keyframes brandMove {
  to {
    transform: translateX(-50%);
  }
}

.blue-panel {
  padding: 168px var(--side);
  color: #fff;
  position: relative;
  isolation: isolate;
  scroll-margin-top: calc(var(--header) + 24px);
}

.blue-panel::before {
  content: "";
  width: calc(100% - var(--side));
  height: 100%;
  aspect-ratio: auto;
  border: 0;
  border-radius: 8px 200px 8px 8px;
  background: linear-gradient(180deg, #3dafff 0%, var(--blue) 45%, #0080d9 100%);
  opacity: 1;
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  z-index: -2;
  transform: none;
}

.section-heading-white .eyebrow {
  color: #fff;
}

.section-heading-white .eyebrow::before {
  background: linear-gradient(135deg, #fff 0 50%, transparent 50%), linear-gradient(315deg, #fff 0 50%, transparent 50%);
}

.company-grid {
  grid-template-columns: minmax(540px, 0.82fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(44px, 5vw, 96px);
}

.company .section-heading {
  align-self: start;
  padding-top: clamp(78px, 6.4vw, 104px);
}

.company .section-heading h2 {
  color: var(--ink);
  font-size: clamp(88px, 7.8vw, 112px);
  line-height: 0.96;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.06);
}

.company-card {
  width: min(100%, 720px);
  margin: 0 0 0 auto;
  color: #fff;
  display: block;
}

.company-thumb {
  height: clamp(420px, 38vw, 520px);
  border-radius: var(--radius);
  box-shadow: 0 28px 70px rgba(0, 36, 68, 0.22);
  overflow: hidden;
  position: relative;
}

.company-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 80, 120, 0.25);
}

.company-thumb span {
  color: rgba(255,255,255,0.74);
  font-size: clamp(58px, 5.6vw, 88px);
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
}

.company-card-body {
  padding: 38px 0 0 clamp(24px, 3vw, 42px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(82px, 6.4vw, 104px);
  gap: 12px 34px;
  align-items: end;
  position: relative;
}

.company-card-body h3 {
  margin: 0;
  font-size: clamp(30px, 2.9vw, 42px);
  font-weight: 800;
}

.company-card-body p {
  margin: 0;
  max-width: 520px;
  padding-right: 0;
  font-size: clamp(15px, 1.25vw, 17px);
  font-weight: 700;
  line-height: 1.95;
}

.company-card-body .round-arrow {
  width: clamp(82px, 6.4vw, 104px);
  height: clamp(82px, 6.4vw, 104px);
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: end;
  position: static;
}

.company-page main {
  padding-top: 0;
}

.company-page .site-header {
  border-bottom-color: rgba(255, 255, 255, 0.22);
}

.company-page .site-header:not(.is-scrolled) {
  color: #fff;
}

.company-page .site-header:not(.is-scrolled) .brand-logo-img {
  filter: brightness(0) invert(1);
}

.company-page .site-header:not(.is-scrolled) .menu-button span {
  background: #fff;
}

.company-page .primary-nav.is-open {
  color: var(--ink);
}

.company-page .primary-nav .is-current {
  position: relative;
}

.company-page .primary-nav .is-current::after {
  content: "";
  height: 3px;
  background: currentColor;
  position: absolute;
  right: 0;
  bottom: -36px;
  left: 0;
}

.company-kv {
  min-height: 500px;
  padding: calc(var(--header) + 94px) var(--side) 0;
  background: var(--blue);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.company-kv::before {
  content: "";
  width: min(760px, 54vw);
  aspect-ratio: 1.55 / 1;
  border-radius: 50%;
  background: rgba(101, 196, 255, 0.55);
  position: absolute;
  left: -11vw;
  bottom: -210px;
  transform: rotate(16deg);
}

.company-kv::after {
  content: "";
  width: 86vw;
  height: 760px;
  background: rgba(98, 190, 255, 0.42);
  clip-path: polygon(16% 0, 100% 0, 100% 100%, 74% 100%);
  position: absolute;
  top: 0;
  right: -24vw;
}

.company-kv-inner,
.company-message-inner,
.company-menu-inner,
.logo-origin-inner {
  width: min(var(--content), 100%);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.company-kv h1 {
  margin: 0 0 34px clamp(36px, 6vw, 92px);
  font-size: clamp(42px, 5.2vw, 68px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0;
}

.company-kv p {
  margin: 0 0 0 clamp(40px, 6.2vw, 96px);
  font-size: 16px;
  font-weight: 800;
}

.company-kv-photo {
  width: min(420px, 33vw);
  height: 238px;
  border-radius: var(--radius);
  object-fit: cover;
  position: absolute;
  right: clamp(24px, 4.4vw, 84px);
  bottom: -156px;
  box-shadow: 0 20px 42px rgba(0, 36, 68, 0.14);
}

.company-message {
  min-height: 2100px;
  padding: 210px var(--side) 260px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.company-message::before,
.company-message::after {
  content: "";
  width: min(132vw, 1880px);
  aspect-ratio: 2.18 / 1;
  border: clamp(42px, 7vw, 108px) solid rgba(0, 128, 217, 0.045);
  border-radius: 50%;
  position: absolute;
  pointer-events: none;
  transform: rotate(-31deg);
}

.company-message::before {
  top: 420px;
  left: -48vw;
}

.company-message::after {
  right: -58vw;
  bottom: 150px;
}

.company-message-inner {
  min-height: 1600px;
}

.company-message-catch {
  color: #000;
  font-size: clamp(78px, 8.2vw, 122px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0;
  position: absolute;
  top: 0;
  left: clamp(48px, 8vw, 150px);
}

.company-message-catch span {
  display: block;
}

.company-message-catch span:first-child {
  color: #2f91df;
}

.company-message-photo {
  border-radius: var(--radius);
  overflow: hidden;
  position: absolute;
  z-index: 2;
  will-change: transform;
}

.company-message-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-message-photo-top {
  width: clamp(220px, 16.8vw, 280px);
  height: clamp(330px, 24vw, 400px);
  top: 360px;
  left: clamp(190px, 20vw, 294px);
}

.company-message-photo-main {
  width: clamp(315px, 24vw, 365px);
  height: clamp(420px, 31vw, 500px);
  top: 575px;
  left: clamp(22px, 5vw, 96px);
  z-index: 3;
}

.company-message-photo-bottom {
  width: clamp(460px, 36vw, 580px);
  height: clamp(250px, 19vw, 310px);
  left: 40.5%;
  bottom: 78px;
}

.company-message-photo-top img {
  object-position: center;
}

.company-message-photo-main img {
  object-position: 38% center;
}

.company-message-photo-bottom img {
  object-position: center;
}

.company-message-copy {
  width: min(560px, 45%);
  position: absolute;
  top: 400px;
  right: clamp(32px, 8vw, 142px);
}

.company-message-copy h2 {
  margin: 0 0 72px;
  font-size: clamp(34px, 3vw, 46px);
  font-weight: 900;
  line-height: 1.75;
}

.company-message-copy p {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 2.15;
}

.company-message-copy p + p {
  margin-top: 28px;
}

.company-menu {
  padding: 60px var(--side) 170px;
  background: #fff;
}

.company-menu-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(56px, 7vw, 100px);
}

.company-menu-card {
  min-height: 178px;
  padding: 54px 0;
  border-top: 1px solid rgba(0, 128, 217, 0.17);
  color: var(--ink);
  display: grid;
  grid-template-columns: minmax(130px, 0.7fr) minmax(190px, 1fr) 74px;
  gap: 32px;
  align-items: center;
  position: relative;
}

.company-menu-card:nth-last-child(-n + 2) {
  border-bottom: 1px solid rgba(0, 128, 217, 0.17);
}

.company-menu-card::before {
  content: none;
}

.company-menu-card span {
  color: var(--blue);
  font-size: clamp(27px, 2.5vw, 36px);
  font-weight: 900;
  line-height: 1.3;
}

.company-menu-card p {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
}

.company-menu-card i {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(0, 128, 217, 0.32);
  border-radius: 50%;
  color: var(--blue);
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 24px;
  justify-self: end;
}

.logo-origin {
  margin: 0 clamp(20px, 3.4vw, 48px) 140px;
  padding: clamp(96px, 9vw, 150px) var(--side);
  border-radius: 200px var(--radius) var(--radius) var(--radius);
  background: linear-gradient(180deg, #3ab1ff 0%, var(--blue) 46%, #0080d9 100%);
  color: #fff;
  overflow: hidden;
}

.logo-origin-inner {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(420px, 1fr);
  gap: clamp(64px, 8vw, 130px);
  align-items: center;
}

.logo-origin-mark {
  min-height: 360px;
  border-radius: var(--radius);
  background: #fff;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.logo-origin-mark::before,
.logo-origin-mark::after {
  content: none;
}

.logo-origin-mark img {
  width: min(72%, 400px);
  position: relative;
  z-index: 2;
}

.logo-origin-copy .eyebrow {
  color: #fff;
}

.logo-origin-copy .eyebrow::before {
  background: linear-gradient(135deg, #fff 0 50%, transparent 50%), linear-gradient(315deg, #fff 0 50%, transparent 50%);
}

.logo-origin-copy h2 {
  margin: 34px 0 42px;
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 900;
  line-height: 1.75;
}

.logo-origin-copy > p:not(.eyebrow) {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 2.15;
}

.logo-origin-button {
  width: max-content;
  min-height: 58px;
  margin-top: 42px;
  padding: 0 30px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.02em;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.logo-origin-button:hover {
  background: #fff;
  color: var(--blue);
  transform: translateY(-2px);
}

.four-c-page main {
  background: #fff;
}

.four-c-kv {
  min-height: 690px;
  isolation: isolate;
}

.four-c-kv::before {
  animation: fourCShapeSlide 11s ease-in-out infinite alternate;
}

.four-c-kv::after {
  animation: fourCShapeSweep 14s ease-in-out infinite alternate;
}

.four-c-kv h1 {
  position: relative;
  z-index: 2;
  animation: fourCTitleIn 0.9s cubic-bezier(0.18, 0.86, 0.22, 1) both;
}

.four-c-kv > .company-kv-inner > p {
  position: relative;
  z-index: 2;
  animation: fourCFadeUp 0.78s ease 0.12s both;
}

.four-c-kv-words {
  position: absolute;
  inset: auto -6vw 44px -6vw;
  z-index: 1;
  color: rgba(255, 255, 255, 0.14);
  display: flex;
  gap: clamp(46px, 7vw, 110px);
  white-space: nowrap;
  font-size: clamp(46px, 7vw, 110px);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
  animation: fourCWords 28s linear infinite;
}

.four-c-kv-words span:nth-child(2n) {
  color: rgba(255, 255, 255, 0.24);
}

.four-c-kv-lead {
  width: min(760px, calc(100% - clamp(36px, 6vw, 92px)));
  margin: 56px 0 0 clamp(36px, 6vw, 92px);
  position: relative;
  z-index: 2;
}

.four-c-kv-lead p {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 2.05;
}

.four-c-kv-lead p + p {
  margin-top: 18px;
}

.four-c-inner {
  width: min(var(--content), 100%);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.four-c-overview {
  padding: clamp(82px, 8vw, 118px) var(--side) clamp(86px, 8vw, 120px);
  background: #fff;
  position: relative;
  overflow: hidden;
}

.four-c-overview .eyebrow {
  width: min(1120px, 100%);
  margin: 0 auto 44px;
}

.four-c-overview-layout {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(340px, 0.74fr);
  gap: clamp(42px, 5vw, 70px);
  align-items: center;
}

.four-c-diagram {
  width: min(500px, 100%);
  margin: 0 auto;
  filter: drop-shadow(0 26px 48px rgba(0, 62, 92, 0.12));
  animation: fourCDiagramFloat 5.8s ease-in-out infinite;
}

.four-c-diagram img {
  width: 100%;
  height: auto;
}

.four-c-overview-copy {
  width: min(760px, 100%);
  margin: 0;
  padding: clamp(34px, 4vw, 52px);
  border-left: 5px solid var(--blue);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(234, 247, 254, 0.92), rgba(255, 255, 255, 0.96));
  box-shadow: 0 24px 52px rgba(0, 80, 128, 0.08);
  position: relative;
  overflow: hidden;
}

.four-c-overview-copy::before {
  content: "FRAMEWORK";
  color: rgba(0, 128, 217, 0.08);
  font-size: clamp(38px, 5vw, 74px);
  font-weight: 900;
  line-height: 1;
  position: absolute;
  right: -16px;
  bottom: -8px;
  pointer-events: none;
}

.four-c-overview-copy p,
.four-c-block-copy p,
.four-c-closing p {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 2.15;
}

.four-c-overview-copy p + p,
.four-c-block-copy p + p,
.four-c-closing p + p {
  margin-top: 20px;
}

.four-c-details {
  padding: 60px var(--side) clamp(96px, 10vw, 150px);
  background:
    radial-gradient(circle at 92% 8%, rgba(130, 230, 229, 0.24), transparent 22vw),
    radial-gradient(circle at 0% 52%, rgba(58, 177, 255, 0.12), transparent 26vw),
    linear-gradient(180deg, #fff 0%, #f8fdff 48%, #fff 100%);
  overflow: hidden;
  position: relative;
}

.four-c-details::before {
  content: "DECISION FLOW";
  color: rgba(0, 128, 217, 0.045);
  font-size: clamp(70px, 11vw, 170px);
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
  white-space: nowrap;
  position: absolute;
  top: 3vw;
  left: -6vw;
  pointer-events: none;
  animation: fourCDetailsFlow 14s ease-in-out infinite alternate;
}

.four-c-block {
  --c-accent: var(--blue);
  --c-rgb: 0, 128, 217;
  padding: clamp(74px, 8vw, 118px) 0;
  border-top: 1px solid rgba(0, 128, 217, 0.17);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1fr);
  gap: clamp(56px, 7vw, 110px);
  align-items: center;
  position: relative;
}

.four-c-block:nth-child(1) {
  --c-accent: #4da642;
  --c-rgb: 77, 166, 66;
}

.four-c-block:nth-child(2) {
  --c-accent: #007fd3;
  --c-rgb: 0, 127, 211;
}

.four-c-block:nth-child(3) {
  --c-accent: #f1ad00;
  --c-rgb: 241, 173, 0;
}

.four-c-block:nth-child(4) {
  --c-accent: #00a0a0;
  --c-rgb: 0, 160, 160;
}

.four-c-block > * {
  position: relative;
  z-index: 2;
}

.four-c-block::before {
  content: "";
  width: 13px;
  height: 13px;
  border: 3px solid var(--c-accent);
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: -9px;
  left: 0;
  box-shadow: 0 0 0 12px rgba(var(--c-rgb), 0.1);
}

.four-c-block::after {
  content: attr(data-number);
  color: rgba(var(--c-rgb), 0.08);
  font-size: clamp(110px, 16vw, 230px);
  font-weight: 900;
  line-height: 0.8;
  position: absolute;
  right: -0.08em;
  top: clamp(42px, 6vw, 90px);
  z-index: 0;
  pointer-events: none;
  animation: fourCNumberDrift 9s ease-in-out infinite alternate;
}

.four-c-block:last-child {
  border-bottom: 1px solid rgba(0, 128, 217, 0.17);
}

.four-c-block:nth-child(even) .four-c-block-copy {
  order: 2;
}

.four-c-block:nth-child(even) .four-c-visual {
  order: 1;
}

.four-c-block:nth-child(even)::after {
  right: auto;
  left: -0.08em;
}

.four-c-block:nth-child(even) .four-c-visual::before {
  right: auto;
  left: -9%;
}

.four-c-block:nth-child(even) .four-c-visual-number {
  right: -0.18em;
  left: auto;
}

.four-c-block-copy h2 {
  margin: 34px 0 42px;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 900;
  line-height: 1.65;
  display: inline-block;
  position: relative;
  isolation: isolate;
}

.four-c-block-copy h2::before {
  content: "";
  height: 0.42em;
  background: linear-gradient(90deg, rgba(var(--c-rgb), 0.24), rgba(var(--c-rgb), 0.02));
  border-radius: 999px;
  position: absolute;
  right: -0.22em;
  bottom: 0.18em;
  left: -0.18em;
  z-index: -1;
  transform: skewX(-14deg);
}

.four-c-visual {
  margin: 0;
  position: relative;
  will-change: transform;
}

.four-c-visual::before {
  content: "";
  width: 58%;
  aspect-ratio: 1;
  border: 1px solid rgba(var(--c-rgb), 0.24);
  border-radius: 42% 58% 48% 52%;
  background: radial-gradient(circle, rgba(var(--c-rgb), 0.18), transparent 68%);
  position: absolute;
  right: -9%;
  top: -12%;
  z-index: 0;
  animation: fourCVisualHalo 7s ease-in-out infinite alternate;
}

.four-c-visual-number {
  color: rgba(var(--c-rgb), 0.18);
  font-size: clamp(82px, 10vw, 150px);
  font-weight: 900;
  line-height: 0.8;
  position: absolute;
  left: -0.18em;
  top: -0.22em;
  z-index: 0;
  pointer-events: none;
  text-shadow: 0 18px 34px rgba(0, 42, 66, 0.07);
  animation: fourCNumberDrift 7.5s ease-in-out infinite alternate-reverse;
}

.four-c-photo {
  height: clamp(360px, 34vw, 500px);
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 26px 54px rgba(0, 42, 66, 0.14);
  transform: rotate(0.001deg);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
  position: relative;
  z-index: 1;
  isolation: isolate;
}

.four-c-photo:hover {
  transform: translateY(-8px) rotate(0.001deg);
  box-shadow: 0 34px 68px rgba(0, 42, 66, 0.18);
}

.four-c-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.025);
  transition: transform 0.7s ease;
  will-change: transform;
}

.four-c-photo:hover img {
  transform: scale(1.07);
}

.four-c-photo::before {
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 21, 40, 0) 38%, rgba(0, 21, 40, 0.62) 100%),
    linear-gradient(135deg, rgba(var(--c-rgb), 0.34), transparent 56%);
  position: absolute;
  inset: 0;
  z-index: 1;
  mix-blend-mode: multiply;
  pointer-events: none;
  opacity: 0.76;
}

.four-c-photo::after {
  content: attr(data-title);
  max-width: min(82%, 560px);
  color: #fff;
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 900;
  line-height: 1.38;
  letter-spacing: 0;
  text-shadow: 0 12px 30px rgba(0, 15, 30, 0.38);
  position: absolute;
  left: clamp(22px, 3vw, 38px);
  bottom: clamp(22px, 3vw, 38px);
  z-index: 2;
  transform: translate3d(0, 34px, 0);
  opacity: 0;
  transition: opacity 0.72s ease 0.18s, transform 0.72s cubic-bezier(0.18, 0.86, 0.22, 1) 0.18s;
}

.four-c-block.is-visible .four-c-photo::after {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.four-c-block.is-visible .four-c-photo::before {
  animation: fourCImageGlow 5.5s ease-in-out infinite alternate;
}

.four-c-block.is-visible .four-c-photo img {
  animation: fourCPhotoDrift 10s ease-in-out infinite alternate;
}

.four-c-question {
  margin-top: 38px;
  padding: 30px 34px;
  border-radius: var(--radius);
  border: 1px solid rgba(var(--c-rgb), 0.16);
  background: linear-gradient(135deg, rgba(var(--c-rgb), 0.13), rgba(255, 255, 255, 0.86));
  position: relative;
  overflow: hidden;
}

.four-c-question::after {
  content: "";
  width: 34%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-accent), transparent);
  position: absolute;
  right: -8%;
  bottom: 0;
  animation: fourCQuestionLine 2.8s ease-in-out infinite;
}

.four-c-question span {
  color: var(--c-accent);
  display: block;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.four-c-question p {
  margin-top: 12px;
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 900;
  line-height: 1.7;
}

.four-c-closing {
  margin: 0 clamp(20px, 3.4vw, 48px) 140px;
  padding: clamp(86px, 9vw, 130px) var(--side);
  border-radius: 160px var(--radius) var(--radius) var(--radius);
  background: linear-gradient(180deg, #3ab1ff 0%, var(--blue) 58%, #0080d9 100%);
  color: #fff;
  overflow: hidden;
  position: relative;
}

.four-c-closing::before {
  content: "CHANGE CONVENTION";
  color: rgba(255, 255, 255, 0.13);
  font-size: clamp(56px, 9vw, 132px);
  font-weight: 900;
  line-height: 0.88;
  position: absolute;
  right: -8vw;
  bottom: 28px;
  pointer-events: none;
  animation: fourCClosingText 12s ease-in-out infinite alternate;
}

.four-c-closing .four-c-inner {
  width: min(920px, 100%);
}

.four-c-closing h2 {
  margin: 0 0 42px;
  font-size: clamp(32px, 3.6vw, 52px);
  font-weight: 900;
  line-height: 1.65;
}

.four-c-closing .pill-button {
  margin-top: 48px;
  background: #fff;
  color: var(--blue);
}

.four-c-closing .pill-button:hover {
  background: #f1fbff;
}

.js-reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.18, 0.86, 0.22, 1);
}

.js-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.four-c-block.js-reveal:nth-child(even) {
  transform: translate3d(0, 46px, 0);
}

.four-c-block.js-reveal.is-visible:nth-child(even) {
  transform: translate3d(0, 0, 0);
}

@keyframes fourCShapeSlide {
  from {
    transform: translate3d(0, 0, 0) rotate(16deg);
  }
  to {
    transform: translate3d(34px, -18px, 0) rotate(10deg);
  }
}

@keyframes fourCShapeSweep {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-42px, 24px, 0);
  }
}

@keyframes fourCWords {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-42%, 0, 0);
  }
}

@keyframes fourCTitleIn {
  from {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fourCFadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fourCDiagramFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(-0.4deg);
  }
  50% {
    transform: translate3d(0, -14px, 0) rotate(0.4deg);
  }
}

@keyframes fourCQuestionLine {
  0%, 100% {
    transform: translateX(0);
    opacity: 0.3;
  }
  50% {
    transform: translateX(-160%);
    opacity: 1;
  }
}

@keyframes fourCDetailsFlow {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(38px, 18px, 0);
  }
}

@keyframes fourCNumberDrift {
  from {
    transform: translate3d(0, 0, 0) rotate(-1deg);
  }
  to {
    transform: translate3d(18px, -12px, 0) rotate(1.5deg);
  }
}

@keyframes fourCVisualHalo {
  from {
    transform: translate3d(0, 0, 0) rotate(-8deg) scale(0.96);
  }
  to {
    transform: translate3d(-18px, 20px, 0) rotate(12deg) scale(1.06);
  }
}

@keyframes fourCImageGlow {
  from {
    opacity: 0.68;
  }
  to {
    opacity: 0.88;
  }
}

@keyframes fourCPhotoDrift {
  from {
    transform: scale(1.025) translate3d(-1.1%, 0, 0);
  }
  to {
    transform: scale(1.075) translate3d(1.1%, -1.2%, 0);
  }
}

@keyframes fourCClosingText {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-28px, -16px, 0);
  }
}

.company-page .contact {
  padding-top: 0;
}

.company-page .site-footer {
  min-height: 620px;
  padding-top: 120px;
  background: #f7f7f7;
  position: relative;
  overflow: hidden;
}

.company-page .site-footer::before {
  content: "";
  width: min(105vw, 1480px);
  aspect-ratio: 2.15 / 1;
  border: 70px solid rgba(255,255,255,0.72);
  border-radius: 50%;
  position: absolute;
  left: -40vw;
  bottom: -260px;
  transform: rotate(-31deg);
}

.company-footer-statement {
  grid-column: 1 / -1;
  align-self: end;
  position: relative;
  z-index: 1;
}

.company-footer-statement strong {
  font-size: clamp(42px, 4vw, 62px);
  font-weight: 900;
  line-height: 0.9;
}

.company-footer-statement strong span {
  color: var(--blue);
}

.company-footer-statement p {
  margin: 20px 0 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
}

.policy-page main {
  background: #fff;
}

.policy-kv {
  min-height: 500px;
}

.policy-kv h1 {
  max-width: 880px;
  margin-top: 28px;
  font-size: clamp(36px, 4.8vw, 64px);
  line-height: 1.25;
}

.policy-content {
  padding: clamp(96px, 10vw, 150px) var(--side) clamp(112px, 12vw, 180px);
  background: #fff;
  position: relative;
}

.policy-content::before {
  top: -22%;
  left: -38%;
}

.policy-content::after {
  right: -44%;
  bottom: -9%;
}

.policy-content-inner {
  width: min(1040px, 100%);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.policy-article {
  color: var(--ink);
}

.policy-article .eyebrow {
  margin-bottom: 34px;
}

.policy-article h2 {
  margin: 0 0 clamp(42px, 5vw, 64px);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.policy-article h3 {
  margin: clamp(54px, 7vw, 84px) 0 26px;
  padding-top: 34px;
  border-top: 1px solid rgba(0, 128, 217, 0.18);
  color: var(--blue);
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 900;
  line-height: 1.55;
}

.policy-article h2 + p,
.policy-article h3 + p {
  margin-top: 0;
}

.policy-article p {
  margin: 18px 0 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 2.2;
  letter-spacing: 0.02em;
}

.policy-number {
  padding-left: 1.2em;
  text-indent: -1.2em;
}

.policy-subnumber {
  padding-left: 2.2em;
  text-indent: -2.2em;
}

.policy-signature {
  font-weight: 800;
}

.product-kv {
  min-height: 500px;
}

.product-lead {
  padding: 170px var(--side) 150px;
  background: #fff;
  overflow: hidden;
}

.product-lead-inner,
.product-services-inner,
.product-closing-inner {
  width: min(var(--content), 100%);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.product-lead-inner {
  min-height: 760px;
}

.product-lead-catch {
  color: #000;
  font-size: clamp(72px, 8vw, 118px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0;
  position: absolute;
  top: 0;
  left: clamp(28px, 7vw, 120px);
  z-index: 1;
}

.product-lead-catch span {
  display: block;
}

.product-lead-catch span:first-child {
  color: #2f91df;
}

.product-lead-photos {
  width: min(48vw, 610px);
  min-height: 650px;
  position: absolute;
  top: 120px;
  left: 0;
  z-index: 2;
}

.product-lead-photo {
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 24px 64px rgba(0, 36, 68, 0.15);
  position: absolute;
}

.product-lead-photo-main {
  width: min(430px, 33vw);
  height: 520px;
  left: clamp(10px, 5vw, 74px);
  bottom: 0;
}

.product-lead-photo-sub {
  width: min(330px, 24vw);
  height: 250px;
  right: 0;
  top: 42px;
}

.product-lead-copy {
  width: min(560px, 44%);
  margin-left: auto;
  padding-top: 170px;
}

.product-lead-copy h2 {
  margin: 0 0 54px;
  font-size: clamp(34px, 3vw, 46px);
  font-weight: 900;
  line-height: 1.75;
}

.product-lead-copy p:not(.eyebrow) {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 2.15;
}

.product-lead-copy p + p {
  margin-top: 26px;
}

.product-services {
  padding-top: 150px;
}

.product-services .section-heading {
  margin-bottom: 86px;
}

.product-card-list {
  display: grid;
  gap: 38px;
}

.product-card {
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 37, 54, 0.08);
  overflow: hidden;
}

.product-card-link {
  color: inherit;
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1fr);
}

.product-card:not(.product-card-feature) {
  display: grid;
  grid-template-columns: minmax(330px, 0.82fr) minmax(0, 1fr);
}

.product-card-image {
  min-height: 430px;
  position: relative;
  overflow: hidden;
}

.product-card-feature .product-card-image {
  min-height: 500px;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.65s ease;
}

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

.product-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 128, 217, 0.04), rgba(0, 36, 68, 0.38));
}

.product-card-image span {
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 900;
  line-height: 0.96;
  position: absolute;
  right: 30px;
  bottom: 28px;
  z-index: 2;
  text-align: right;
}

.product-card-body {
  min-height: inherit;
  padding: clamp(42px, 5vw, 72px);
  position: relative;
}

.product-card-body .eyebrow {
  margin-bottom: 18px;
}

.product-card-body h3 {
  margin: 0 0 28px;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 900;
  line-height: 1.45;
}

.product-card-body > p:not(.eyebrow) {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}

.product-card-body ul {
  margin: 34px 0 0;
  padding: 0;
  display: grid;
  gap: 13px;
  list-style: none;
}

.product-card-body li {
  padding-left: 22px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.65;
  position: relative;
}

.product-card-body li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  position: absolute;
  top: 0.68em;
  left: 0;
}

.product-card-body .round-arrow {
  border-color: rgba(0, 128, 217, 0.32);
  color: var(--blue);
  position: absolute;
  right: clamp(32px, 4vw, 58px);
  bottom: clamp(32px, 4vw, 58px);
}

.product-closing {
  padding: 150px var(--side);
  background: #fff;
}

.product-closing-inner {
  padding: 92px clamp(34px, 7vw, 110px);
  border-radius: var(--radius);
  background: var(--blue);
  color: #fff;
  overflow: hidden;
}

.product-closing-inner::before {
  content: "";
  width: min(880px, 76vw);
  aspect-ratio: 2.2 / 1;
  border: 72px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  position: absolute;
  right: -24%;
  bottom: -38%;
  transform: rotate(-31deg);
}

.product-closing .eyebrow {
  color: #fff;
}

.product-closing .eyebrow::before {
  background: linear-gradient(135deg, #fff 0 50%, transparent 50%), linear-gradient(315deg, #fff 0 50%, transparent 50%);
}

.product-closing h2 {
  max-width: 720px;
  margin: 0 0 36px;
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 900;
  line-height: 1.55;
}

.product-closing p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 0 42px;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}

.product-closing .pill-button {
  background: #fff;
  color: var(--blue);
}

.news {
  padding: 128px var(--side);
}

.news-grid {
  max-width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 314px 1fr;
  gap: 72px;
}

.news .section-heading {
  padding-left: 30px;
}

.news .pill-button {
  margin-top: 54px;
}

.news-list {
  display: grid;
}

.news-item {
  min-height: 134px;
  padding: 20px 0;
  border-bottom: 1px solid #dcdcdc;
  display: grid;
  grid-template-columns: 200px 1fr 64px;
  align-items: center;
  gap: 28px;
}

.news-item img {
  width: 200px;
  height: 110px;
  border-radius: var(--radius);
  object-fit: cover;
}

.tag {
  min-width: 110px;
  margin-right: 24px;
  padding: 5px 16px 6px;
  border-radius: 999px;
  background: var(--blue-light);
  color: var(--blue);
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

time {
  color: #999;
  font-size: 14px;
}

.news-item h3 {
  margin: 18px 0 0;
  font-size: clamp(16px, 1.55vw, 20px);
  font-weight: 700;
  line-height: 1.62;
}

.news-arrow {
  border-color: rgba(0,128,217,0.32);
  color: var(--blue);
}

.contact {
  padding: 0 var(--side) 96px;
}

.contact-box {
  max-width: var(--content);
  min-height: 285px;
  margin: 0 auto;
  padding: 72px;
  border-radius: var(--radius);
  background: var(--panel);
  display: grid;
  grid-template-columns: 1fr 340px 1fr;
  gap: 70px;
  align-items: center;
}

.contact-box::before,
.contact-box::after {
  border-color: rgba(0, 128, 217, 0.045);
}

.contact-box h2 {
  margin: 0 0 24px;
  font-size: clamp(44px, 5vw, 62px);
  font-weight: 900;
}

.contact-box p,
.contact-box dt {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.6;
}

.contact-box dl {
  margin: 0;
}

.contact-box dd {
  margin: 12px 0 0;
}

.contact-box dd a {
  color: var(--blue);
  display: block;
  font-size: clamp(32px, 3.3vw, 44px);
  font-weight: 300;
  letter-spacing: 0.02em;
}

.contact-box dd span {
  margin-top: 8px;
  display: block;
  font-size: 12px;
  line-height: 1.6;
}

.contact-main {
  min-height: 108px;
  width: 340px;
  justify-self: center;
  font-size: 18px;
}

.page-top {
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 21px;
  position: fixed;
  right: clamp(20px, 4vw, 56px);
  bottom: 28px;
  z-index: 18;
  box-shadow: 0 16px 36px rgba(0, 94, 160, 0.24);
}

.page-top span {
  margin-top: -22px;
  display: block;
  font-size: 12px;
}

.site-footer {
  padding: 70px var(--side);
  background: #f8f8f8;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 36px;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  font-size: 14px;
  font-weight: 700;
}

.site-footer p {
  grid-column: 1 / -1;
  margin: 28px 0 0;
  color: #777;
  font-size: 12px;
}

.mobile-only {
  display: none;
}

@media (max-width: 1020px) {
  :root {
    --header: 72px;
  }

  .site-header {
    width: 100%;
    padding: 0 20px;
  }

  .primary-nav,
  .header-contact {
    display: none;
  }

  .menu-button {
    margin-left: auto;
    display: block;
  }

  .primary-nav.is-open {
    padding: 24px;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.95);
    box-shadow: 0 18px 42px rgba(0, 37, 54, 0.12);
    display: grid;
    position: absolute;
    top: 82px;
    right: 0;
    left: 0;
  }

  .hero {
    padding-top: 118px;
  }

  .hero h1 {
    margin-left: 0;
  }

  body.with-loader .hero h1.hero-title-probe {
    margin-left: 0;
  }

  .scroll-sign {
    display: none;
  }

  .section-grid,
  .news-grid,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .subpage-hero {
    min-height: auto;
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .subpage-hero-inner,
  .company-lead-inner,
  .logo-origin-inner {
    grid-template-columns: 1fr;
  }

  .subpage-title h1 {
    font-size: clamp(78px, 13vw, 128px);
  }

  .subpage-hero-photo {
    height: clamp(340px, 58vw, 520px);
  }

  .subpage-statement {
    right: -16%;
    bottom: -40px;
    font-size: clamp(72px, 14vw, 120px);
  }

  .company-lead {
    padding-top: 72px;
    padding-bottom: 112px;
  }

  .company-menu {
    padding-top: 104px;
    padding-bottom: 104px;
  }

  .company-menu-inner {
    grid-template-columns: 1fr;
  }

  .logo-origin {
    padding-top: 112px;
    padding-bottom: 112px;
  }

  .company-kv {
    min-height: 440px;
    padding-top: calc(var(--header) + 80px);
  }

  .company-kv h1 {
    margin-left: 24px;
    font-size: clamp(38px, 6.2vw, 54px);
  }

  .company-kv p {
    margin-left: 28px;
  }

  .company-kv-photo {
    width: min(420px, 52vw);
    right: 28px;
    bottom: -118px;
  }

  .company-message {
    min-height: auto;
    padding-top: 230px;
    padding-bottom: 96px;
  }

  .company-message-inner {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .company-message-catch,
  .company-message-copy,
  .company-message-photo {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .company-message-catch {
    font-size: clamp(62px, 12vw, 96px);
  }

  .company-message-copy {
    width: min(680px, 100%);
    margin-left: auto;
  }

  .company-message-copy h2 {
    margin-bottom: 40px;
  }

  .company-message-photo-top {
    width: min(62%, 360px);
    height: 360px;
    margin-left: 18%;
  }

  .company-message-photo-main {
    width: min(76%, 500px);
    height: 410px;
    margin-top: -130px;
  }

  .company-message-photo-bottom {
    width: min(78%, 560px);
    height: 280px;
    margin: 20px auto 0;
  }

  .company-menu-card {
    grid-template-columns: minmax(160px, 0.7fr) minmax(220px, 1fr) 74px;
  }

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

  .company-menu-card:last-child {
    border-bottom: 1px solid rgba(0, 128, 217, 0.17);
  }

  .policy-kv {
    min-height: 440px;
  }

  .policy-kv h1 {
    max-width: 720px;
    font-size: clamp(34px, 5.2vw, 52px);
  }

  .policy-content {
    padding-top: 104px;
    padding-bottom: 124px;
  }

  .product-lead {
    padding-top: 130px;
    padding-bottom: 112px;
  }

  .product-lead-inner {
    min-height: auto;
    display: grid;
    gap: 42px;
  }

  .product-lead-catch,
  .product-lead-photos,
  .product-lead-copy {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .product-lead-catch {
    font-size: clamp(60px, 12vw, 96px);
    margin-left: 24px;
  }

  .product-lead-photos {
    width: min(720px, 100%);
    min-height: 520px;
  }

  .product-lead-photo-main {
    width: min(480px, 68vw);
    height: 460px;
    left: 0;
  }

  .product-lead-photo-sub {
    width: min(330px, 44vw);
    height: 230px;
    right: 0;
  }

  .product-lead-copy {
    width: min(680px, 100%);
    margin-left: auto;
    padding-top: 0;
  }

  .product-card-link,
  .product-card:not(.product-card-feature) {
    grid-template-columns: 1fr;
  }

  .product-card-image,
  .product-card-feature .product-card-image {
    min-height: 360px;
  }

  .product-closing {
    padding-top: 112px;
    padding-bottom: 112px;
  }

  .logo-origin-inner {
    gap: 46px;
  }

  .four-c-kv {
    min-height: auto;
    padding-bottom: 92px;
  }

  .four-c-kv-words {
    bottom: 22px;
    font-size: clamp(42px, 9vw, 76px);
  }

  .four-c-kv-lead {
    width: min(720px, calc(100% - 48px));
    margin-left: 24px;
  }

  .four-c-overview-layout {
    grid-template-columns: 1fr;
  }

  .four-c-diagram {
    width: min(640px, 100%);
    order: 1;
  }

  .four-c-overview-copy {
    order: 2;
  }

  .four-c-block {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .four-c-block:nth-child(even) .four-c-block-copy,
  .four-c-block:nth-child(even) .four-c-visual {
    order: initial;
  }

  .four-c-photo {
    height: clamp(340px, 56vw, 480px);
  }

  .company-grid {
    gap: 64px;
  }

  .company .section-heading {
    padding-top: 0;
  }

  .company .section-heading h2 {
    font-size: clamp(68px, 12vw, 112px);
  }

  .product-lead {
    padding-top: 92px;
    padding-bottom: 86px;
  }

  .product-lead-catch {
    margin-left: 0;
    font-size: clamp(40px, 12vw, 48px);
    line-height: 0.9;
  }

  .product-lead-photos {
    min-height: 420px;
  }

  .product-lead-photo-main {
    width: 76%;
    height: 370px;
  }

  .product-lead-photo-sub {
    width: 50%;
    height: 176px;
    top: 34px;
  }

  .product-lead-copy h2 {
    margin-bottom: 32px;
    font-size: clamp(28px, 8vw, 38px);
  }

  .product-services {
    padding-top: 96px;
  }

  .product-services .section-heading {
    margin-bottom: 48px;
  }

  .product-card-body {
    padding: 34px 24px 40px;
  }

  .product-card-image,
  .product-card-feature .product-card-image {
    min-height: 250px;
  }

  .product-card-image span {
    right: 20px;
    bottom: 18px;
    font-size: clamp(28px, 11vw, 46px);
  }

  .product-card-body h3 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .product-card-body .round-arrow {
    position: static;
    margin-top: 30px;
  }

  .product-closing {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .product-closing-inner {
    padding: 56px 24px;
  }

  .company-card {
    width: min(100%, 680px);
    margin: 0 auto;
  }

  .company-thumb {
    height: clamp(340px, 54vw, 460px);
  }

  .section-button {
    place-self: start;
  }

  .service-cards {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .news-item {
    grid-template-columns: 150px 1fr 52px;
  }

  .news-item img {
    width: 150px;
    height: 92px;
  }

  .contact-box {
    gap: 36px;
  }

  .contact-main {
    justify-self: start;
  }

  .site-footer,
  .footer-menu {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  :root {
    --side: 16px;
  }

  body.with-loader {
    --loader-title-shift: -18px;
    --loader-brand-shift: -54px;
  }

  .brand-text {
    font-size: 22px;
  }

  body.with-loader .hero h1 {
    font-size: clamp(24px, 7vw, 36px);
    line-height: 1.85;
    max-width: calc(100vw - 36px);
  }

  .loader-brand {
    width: min(220px, 54vw);
    top: calc(50% + 116px);
  }

  .loader-progress {
    height: 4px;
  }

  .loader-brand img {
    width: min(150px, 42vw);
    margin-top: 22px;
  }

  .loader-dot-blue {
    top: 10%;
    left: 18%;
  }

  .loader-dot-small {
    left: 12%;
    bottom: 11%;
  }

  .loader-dot-mint {
    right: 10%;
    bottom: 19%;
  }

  .hero {
    min-height: 690px;
  }

  .hero-photo img {
    object-position: 58% center;
  }

  .motion-copy {
    top: calc(100svh - 142px);
  }

  .motion-copy .love {
    font-size: 56px;
  }

  .motion-copy .technology {
    font-size: 54px;
  }

  .about {
    padding-top: 280px;
    padding-bottom: 90px;
  }

  .about-text {
    margin-top: 0;
    font-size: 14px;
  }

  .mobile-only {
    display: block;
  }

  .light-panel,
  .blue-panel,
  .news {
    padding-top: 92px;
    padding-bottom: 92px;
    border-radius: 88px 0 0 0;
  }

  .section-heading {
    padding-left: 24px;
  }

  .section-heading h2 {
    font-size: 52px;
  }

  .service-cards {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card-large {
    min-height: 300px;
  }

  .service-card-content {
    padding: 24px;
  }

  .service-card-content p {
    margin-right: 56px;
  }

  .subpage-hero {
    padding-top: 74px;
    padding-bottom: 72px;
  }

  .subpage-title {
    padding-left: 24px;
  }

  .subpage-title h1 {
    font-size: 64px;
  }

  .subpage-hero-photo {
    height: 300px;
  }

  .subpage-hero-photo span {
    font-size: 40px;
  }

  .subpage-statement {
    display: none;
  }

  .company-lead {
    padding-top: 62px;
    padding-bottom: 86px;
  }

  .company-lead .eyebrow {
    margin-left: 24px;
  }

  .company-lead h2 {
    font-size: 25px;
    line-height: 1.75;
  }

  .company-lead-copy {
    font-size: 14px;
  }

  .company-menu {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .company-menu-card {
    min-height: 178px;
    padding: 28px 24px;
    grid-template-columns: minmax(0, 1fr) 52px;
  }

  .company-menu-card span {
    font-size: 25px;
  }

  .company-menu-card i {
    width: 52px;
    height: 52px;
  }

  .logo-origin {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .company-page .site-header:not(.is-scrolled) {
    color: #fff;
  }

  .company-kv {
    min-height: 360px;
    padding-top: calc(var(--header) + 62px);
  }

  .company-kv::before {
    width: 520px;
    left: -250px;
    bottom: -120px;
  }

  .company-kv::after {
    width: 118vw;
    height: 420px;
    right: -48vw;
  }

  .company-kv h1 {
    margin-left: 6px;
    margin-bottom: 22px;
    font-size: 34px;
  }

  .company-kv p {
    margin-left: 8px;
  }

  .company-kv-photo {
    width: 68vw;
    height: 150px;
    right: 16px;
    bottom: -78px;
  }

  .company-message {
    padding-top: 150px;
    padding-bottom: 76px;
  }

  .company-message::before,
  .company-message::after {
    border-width: 36px;
  }

  .company-message-catch {
    font-size: 43px;
  }

  .company-message-photo-top {
    width: 62%;
    height: 250px;
    margin-left: auto;
  }

  .company-message-photo-main {
    width: 82%;
    height: 310px;
    margin-top: -92px;
  }

  .company-message-photo-bottom {
    width: 100%;
    height: 210px;
  }

  .company-message-copy {
    margin-left: 0;
  }

  .company-message-copy h2 {
    margin-bottom: 28px;
    font-size: 26px;
    line-height: 1.75;
  }

  .company-message-copy p {
    font-size: 14px;
    line-height: 2;
  }

  .policy-kv {
    min-height: 360px;
  }

  .policy-kv h1 {
    margin-left: 6px;
    font-size: 28px;
    line-height: 1.35;
  }

  .policy-content {
    padding-top: 70px;
    padding-bottom: 86px;
  }

  .policy-article .eyebrow {
    margin-bottom: 24px;
  }

  .policy-article h2 {
    margin-bottom: 42px;
    font-size: 24px;
  }

  .policy-article h3 {
    margin-top: 48px;
    padding-top: 28px;
    font-size: 20px;
  }

  .policy-article p {
    font-size: 13px;
    line-height: 2.05;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .company-menu {
    padding-top: 48px;
    padding-bottom: 82px;
  }

  .company-menu-card {
    min-height: 154px;
    padding: 30px 0;
    grid-template-columns: 1fr 52px;
    gap: 14px 18px;
  }

  .company-menu-card span {
    font-size: 25px;
  }

  .company-menu-card p {
    grid-column: 1;
    font-size: 13px;
  }

  .company-menu-card i {
    width: 52px;
    height: 52px;
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .logo-origin {
    margin: 0 0 74px;
    padding: 70px 20px;
    border-radius: 88px var(--radius) var(--radius) var(--radius);
  }

  .logo-origin-mark {
    min-height: 250px;
  }

  .logo-origin-copy h2 {
    font-size: 28px;
  }

  .logo-origin-copy > p:not(.eyebrow) {
    font-size: 14px;
  }

  .four-c-kv {
    padding-bottom: 70px;
  }

  .four-c-kv h1 {
    font-size: 34px;
  }

  .four-c-kv-lead {
    width: calc(100% - 12px);
    margin: 36px 0 0 6px;
  }

  .four-c-kv-lead p,
  .four-c-overview-copy p,
  .four-c-block-copy p,
  .four-c-closing p {
    font-size: 14px;
    line-height: 2;
  }

  .four-c-overview {
    padding-top: 70px;
    padding-bottom: 72px;
  }

  .four-c-overview .eyebrow {
    margin-bottom: 34px;
  }

  .four-c-diagram {
    width: min(100%, 520px);
  }

  .four-c-overview-copy {
    margin-top: 40px;
    padding: 26px 22px;
  }

  .four-c-details {
    padding-top: 28px;
    padding-bottom: 82px;
  }

  .four-c-details::before {
    font-size: 54px;
    top: 34px;
  }

  .four-c-block {
    padding: 58px 0;
  }

  .four-c-block::after {
    top: 48px;
    right: -0.18em;
    font-size: 86px;
  }

  .four-c-block-copy h2 {
    margin: 22px 0 28px;
    font-size: 27px;
  }

  .four-c-visual::before {
    width: 72%;
    right: -18%;
    top: -14%;
  }

  .four-c-visual-number {
    top: -0.18em;
    left: -0.06em;
    font-size: 72px;
  }

  .four-c-photo {
    height: 260px;
  }

  .four-c-photo::after {
    max-width: 90%;
    font-size: 24px;
    left: 20px;
    bottom: 20px;
  }

  .four-c-photo:hover {
    transform: none;
  }

  .four-c-photo:hover img {
    transform: none;
  }

  .four-c-question {
    margin-top: 28px;
    padding: 24px 22px;
  }

  .four-c-question p {
    font-size: 18px;
  }

  .four-c-closing {
    margin: 0 0 74px;
    padding: 70px 20px;
    border-radius: 88px var(--radius) var(--radius) var(--radius);
  }

  .four-c-closing h2 {
    font-size: 28px;
  }

  .four-c-closing::before {
    right: -34vw;
    bottom: 22px;
    font-size: 52px;
  }

  .company-card {
    width: min(100%, 36rem);
  }

  .company .section-heading h2 {
    font-size: 52px;
  }

  .company-thumb {
    height: 300px;
  }

  .company-thumb span {
    font-size: 40px;
  }

  .company-card-body {
    padding: 32px 24px 0;
    display: block;
  }

  .company-card-body h3 {
    margin-bottom: 16px;
    font-size: 26px;
  }

  .company-card-body p {
    max-width: 100%;
    padding-right: 0;
    font-size: 13px;
    line-height: 1.9;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .company-card-body .round-arrow {
    width: 72px;
    height: 72px;
    margin: 28px 0 0 auto;
    position: static;
  }

  .brand-loop {
    padding: 88px 0;
  }

  .brand-track {
    gap: 56px;
  }

  .loop-mark {
    width: 62px;
  }

  .news-item {
    grid-template-columns: 108px 1fr;
    gap: 16px;
  }

  .news-item img {
    width: 108px;
    height: 74px;
  }

  .news-arrow {
    display: none;
  }

  .tag {
    margin-bottom: 8px;
  }

  .contact {
    padding-bottom: 54px;
  }

  .contact-box {
    padding: 36px 24px;
  }

  .contact-main {
    width: 100%;
  }

  .page-top {
    width: 82px;
    height: 82px;
  }
}

@media (max-width: 767px) {
  .motion-copy {
    width: calc(100% - var(--side) * 2);
    top: calc(100svh - 142px);
  }

  .motion-copy .love {
    font-size: 56px;
  }

  .motion-copy .technology {
    font-size: 54px;
  }

  .about {
    padding-top: 280px;
  }
}

/* kintone Ad Plugin */
.ad-plugin-page {
  --ad-yellow: #ffb100;
  --ad-yellow-soft: #fff4cd;
  --ad-yellow-pale: #fff9e8;
  --ad-ink: #111;
  --ad-muted: #687078;
  --ad-line: rgba(17, 17, 17, 0.12);
  --ad-content: 1180px;
  background: #fff;
  color: var(--ad-ink);
  font-family: "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.ad-plugin-page .menu-button span {
  background: var(--ad-ink);
}

.ad-site-header {
  width: min(100% - 40px, 1220px);
  min-height: 74px;
  padding: 12px 18px 12px 22px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 50px rgba(78, 66, 20, 0.12);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  gap: 30px;
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 40;
  transform: translateX(-50%);
}

.ad-header-logo {
  width: clamp(190px, 21vw, 270px);
  height: 50px;
  display: block;
  overflow: hidden;
  flex: 0 0 auto;
}

.ad-header-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ad-primary-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 36px);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.ad-primary-nav a {
  white-space: nowrap;
}

.ad-nav-contact,
.ad-main-button {
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--ad-yellow);
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(255, 177, 0, 0.28);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.ad-nav-contact:hover,
.ad-main-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(255, 177, 0, 0.36);
}

.ad-menu-button {
  display: none;
}

.ad-kv {
  padding: 112px var(--side) 132px;
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 177, 0, 0.18), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fff 58%, var(--ad-yellow-pale) 100%);
  overflow: hidden;
  position: relative;
}

.ad-kv::after {
  content: "";
  height: 92px;
  background: linear-gradient(180deg, var(--ad-yellow-pale), #fff);
  position: absolute;
  right: 0;
  bottom: -92px;
  left: 0;
}

.ad-kv-inner {
  width: min(1320px, 100%);
  min-height: 470px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(500px, 0.98fr) minmax(540px, 1.02fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: end;
}

.ad-kv-copy {
  min-width: 0;
}

.ad-kv-label,
.ad-section-head p {
  margin: 0 0 18px;
  color: #7a5200;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.ad-kv-label span {
  color: #f02323;
}

.ad-kv h1 {
  margin: 0 0 28px;
  font-size: clamp(44px, 3.45vw, 54px);
  font-weight: 900;
  line-height: 1.24;
  letter-spacing: 0;
}

.ad-kv h1 span {
  white-space: nowrap;
}

.ad-kv-copy > p:not(.ad-kv-label) {
  max-width: 620px;
  margin: 0;
  color: #333;
  font-size: 24px;
  font-weight: 900;
  line-height: 2;
}

.ad-kv-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.ad-main-button {
  min-height: 60px;
  min-width: 260px;
  padding: 0 32px;
  font-size: 18px;
}

.ad-sub-button {
  min-height: 60px;
  min-width: 250px;
  padding: 0 30px;
  border: 2px solid var(--ad-ink);
  border-radius: 999px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 18px;
  font-weight: 900;
}

.ad-icon-search,
.ad-icon-gift {
  width: 22px;
  height: 22px;
  display: inline-block;
  position: relative;
  flex: 0 0 auto;
}

.ad-icon-search::before {
  content: "";
  width: 13px;
  height: 13px;
  border: 3px solid #111;
  border-radius: 50%;
  position: absolute;
  top: 1px;
  left: 1px;
}

.ad-icon-search::after {
  content: "";
  width: 10px;
  height: 3px;
  border-radius: 999px;
  background: #111;
  position: absolute;
  right: 0;
  bottom: 3px;
  transform: rotate(45deg);
}

.ad-icon-gift::before {
  content: "";
  width: 17px;
  height: 14px;
  border: 2px solid #111;
  border-radius: 3px;
  position: absolute;
  left: 2px;
  bottom: 1px;
}

.ad-icon-gift::after {
  content: "";
  width: 21px;
  height: 7px;
  border: 2px solid #111;
  border-radius: 3px;
  position: absolute;
  left: 0;
  top: 2px;
  box-sizing: border-box;
}

.ad-kv-points {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.ad-kv-points span {
  padding-left: 24px;
  color: #333;
  font-size: 14px;
  font-weight: 800;
  position: relative;
  white-space: nowrap;
}

.ad-kv-points span::before {
  content: "";
  width: 15px;
  height: 15px;
  border: 2px solid var(--ad-yellow);
  border-radius: 50%;
  position: absolute;
  top: 0.35em;
  left: 0;
}

.ad-kv-points span::after {
  content: "";
  width: 6px;
  height: 3px;
  border-bottom: 2px solid var(--ad-yellow);
  border-left: 2px solid var(--ad-yellow);
  position: absolute;
  top: calc(0.35em + 5px);
  left: 5px;
  transform: rotate(-45deg);
}

.ad-kv-visual {
  min-width: 0;
  padding-bottom: 42px;
  position: relative;
}

.ad-laptop {
  width: min(640px, 100%);
  margin: 0 auto;
  position: relative;
}

@media (min-width: 1021px) {
  .ad-laptop {
    transform: translateY(34px);
  }
}

.ad-laptop-screen {
  width: 100%;
  box-sizing: border-box;
  aspect-ratio: 1.78 / 1;
  padding: clamp(28px, 4vw, 48px);
  border: 9px solid #111;
  border-radius: 12px 12px 8px 8px;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 177, 0, 0.18), transparent 28%),
    linear-gradient(135deg, #fff 0%, #fff9e8 100%);
  box-shadow: 0 26px 54px rgba(17, 17, 17, 0.18);
  overflow: hidden;
  display: grid;
  place-items: center;
}

.ad-laptop-base {
  height: 22px;
  margin: -2px -28px 0;
  border-radius: 0 0 48px 48px;
  background: linear-gradient(180deg, #d8d8d8, #a9a9a9);
  box-shadow: 0 12px 24px rgba(17, 17, 17, 0.18);
}

.ad-laptop-message {
  width: min(520px, 100%);
  text-align: left;
}

.ad-laptop-logo-line {
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: clamp(22px, 2.1vw, 32px);
  font-weight: 900;
}

.ad-laptop-logo-line img {
  width: min(280px, 54%);
  height: auto;
  mix-blend-mode: multiply;
}

.ad-typing-copy {
  margin: 0;
  display: grid;
  gap: 8px;
  color: #111;
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0;
}

.ad-typing-copy span {
  position: relative;
  display: block;
  min-height: 1.35em;
  overflow: hidden;
  white-space: nowrap;
}

.ad-typing-copy span::after {
  content: "";
  display: inline-block;
  width: 0.08em;
  height: 1em;
  margin-left: 0.08em;
  transform: translateY(0.12em);
  background: transparent;
}

.ad-typing-copy span.is-typing::after {
  background: var(--ad-yellow);
  animation: adCaret 0.65s step-end infinite;
}

@keyframes adCaret {
  50% {
    background: transparent;
  }
}

.ad-store-topbar {
  height: 30px;
  border-bottom: 1px solid #e8eaef;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  font-size: 11px;
  font-weight: 900;
}

.ad-store-topbar strong {
  padding-left: 22px;
  position: relative;
}

.ad-store-topbar strong::before {
  content: "AD";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--ad-yellow);
  color: #111;
  display: grid;
  place-items: center;
  font-size: 8px;
  position: absolute;
  top: -1px;
  left: 0;
}

.ad-store-layout {
  height: calc(100% - 30px);
  display: flex;
  gap: 22px;
  padding-top: 14px;
}

.ad-store-side {
  width: 140px;
  padding: 8px;
  border-radius: 8px;
  background: #f6f7fa;
  display: grid;
  align-content: start;
  gap: 7px;
  color: #545b66;
  font-size: 10px;
  font-weight: 800;
}

.ad-store-side b,
.ad-store-side span {
  min-height: 18px;
  padding: 0 7px;
  border-radius: 5px;
  display: flex;
  align-items: center;
}

.ad-store-side b {
  background: #e9edf3;
  color: #111;
}

.ad-store-side i {
  height: 1px;
  margin: 4px 0;
  background: #e1e4e8;
}

.ad-store-main {
  min-width: 0;
  flex: 1;
  position: relative;
}

.ad-store-search {
  width: 156px;
  height: 30px;
  margin-left: auto;
  padding: 0 12px;
  border: 1px solid #e1e5ec;
  border-radius: 6px;
  color: #a0a7b1;
  display: grid;
  align-items: center;
  font-size: 10px;
  font-weight: 800;
}

.ad-store-main h2 {
  margin: 12px 0 18px;
  font-size: 18px;
  font-weight: 900;
}

.ad-store-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.ad-store-cards article {
  min-height: 142px;
  padding: 18px 12px 12px;
  border: 1px solid #e3e7ee;
  border-radius: 8px;
  background: #fff;
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
}

.ad-store-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
  border: 4px solid currentColor;
  border-radius: 8px;
  display: block;
  position: relative;
}

.ad-store-icon::after {
  content: "";
  width: 12px;
  height: 7px;
  border-bottom: 4px solid currentColor;
  border-left: 4px solid currentColor;
  position: absolute;
  top: 9px;
  left: 8px;
  transform: rotate(-45deg);
}

.ad-store-icon-blue {
  color: #4f87ff;
}

.ad-store-icon-green {
  color: #24bf72;
}

.ad-store-icon-purple {
  color: #8d54d8;
}

.ad-store-cards h3 {
  margin: 0;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.45;
}

.ad-store-cards p {
  margin: 13px 0 0;
  color: #555;
  font-size: 10px;
  font-weight: 800;
}

.ad-store-cards p::before {
  content: "★";
  color: var(--ad-yellow);
  margin-right: 4px;
}

.ad-category-strip {
  width: min(1320px, 100%);
  margin: 26px auto 0;
  padding: 34px 0 30px;
}

.ad-category-head {
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.ad-category-head h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
}

.ad-category-head a {
  color: #1685d9;
  font-size: 13px;
  font-weight: 900;
}

.ad-category-list {
  display: grid;
  grid-template-columns: repeat(8, minmax(118px, 1fr));
  gap: 18px;
}

.ad-category-list a {
  min-height: 74px;
  padding: 14px 10px;
  border: 1px solid rgba(17, 17, 17, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 20px rgba(25, 33, 44, 0.05);
  display: grid;
  grid-template-columns: 30px 1fr;
  grid-template-rows: auto auto;
  column-gap: 8px;
  align-items: center;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.ad-category-list a.is-active,
.ad-category-list a:hover {
  border-color: var(--ad-yellow);
  box-shadow: 0 12px 28px rgba(255, 177, 0, 0.18);
  transform: translateY(-2px);
}

.ad-category-list i {
  width: 28px;
  height: 28px;
  grid-row: 1 / 3;
  border: 3px solid currentColor;
  border-radius: 7px;
  display: block;
  position: relative;
}

.ad-category-list i::after {
  content: "";
  width: 10px;
  height: 10px;
  border: 3px solid currentColor;
  border-top: 0;
  border-left: 0;
  position: absolute;
  right: -7px;
  bottom: -7px;
}

.ad-category-list span {
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
}

.ad-category-list small {
  color: #646b74;
  font-size: 12px;
  font-weight: 800;
}

.cat-orange { color: #ff832b; }
.cat-all { color: #111; }
.cat-yellow { color: #e0a600; }
.cat-blue { color: #338fdd; }
.cat-gold { color: #ffb100; }
.cat-indigo { color: #7475ee; }
.cat-cyan { color: #21a6dc; }
.cat-green { color: #28b85d; }
.cat-gray { color: #8a929b; }

.ad-intro {
  display: none;
}

.ad-intro {
  padding: 34px var(--side) 80px;
}

.ad-intro-inner,
.ad-plugin-list-section,
.ad-pricing-inner,
.ad-download-inner,
.ad-contact-inner {
  width: min(var(--ad-content), 100%);
  margin: 0 auto;
}

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

.ad-intro article {
  min-height: 172px;
  padding: 26px;
  border: 1px solid var(--ad-line);
  border-radius: 8px;
  background: #fff;
}

.ad-intro article span {
  color: var(--ad-yellow);
  font-size: 13px;
  font-weight: 900;
}

.ad-intro h2 {
  margin: 10px 0 12px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.45;
}

.ad-intro p {
  margin: 0;
  color: var(--ad-muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}

.ad-plugin-list-section {
  padding: 132px 0 118px;
  scroll-margin-top: 108px;
}

.ad-section-head {
  max-width: 780px;
  margin-bottom: 28px;
}

.ad-section-head h2,
.ad-download h2,
.ad-contact-section h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: 0;
}

.ad-section-head span,
.ad-download p,
.ad-contact-section p {
  color: var(--ad-muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.9;
}

.ad-plugin-controls {
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.ad-plugin-filter,
.ad-plugin-sort {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ad-plugin-filter a,
.ad-plugin-sort a {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--ad-line);
  border-radius: 999px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 900;
}

.ad-plugin-filter a.is-active,
.ad-plugin-sort a.is-active {
  border-color: var(--ad-yellow);
  background: var(--ad-yellow);
}

.ad-plugin-sort {
  align-items: center;
  flex: 0 0 auto;
}

.ad-plugin-sort span {
  color: var(--ad-muted);
  font-size: 13px;
  font-weight: 900;
}

.ad-plugin-list {
  display: grid;
  gap: 18px;
}

.ad-plugin-loader {
  min-height: 92px;
  margin-top: 26px;
  display: grid;
  place-items: center;
  color: var(--ad-muted);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.ad-plugin-loader span {
  width: 36px;
  height: 36px;
  border: 4px solid var(--ad-yellow-soft);
  border-top-color: var(--ad-yellow);
  border-radius: 50%;
  display: block;
  animation: adSpin 0.8s linear infinite;
}

.ad-plugin-loader p {
  margin: 10px 0 0;
}

.ad-plugin-loader.is-done span {
  display: none;
}

.ad-plugin-loader.is-done p::before {
  content: "すべての";
}

@keyframes adSpin {
  to {
    transform: rotate(360deg);
  }
}

.ad-plugin-row {
  min-height: 226px;
  padding: 18px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 48px rgba(32, 24, 0, 0.07);
  display: grid;
  grid-template-columns: minmax(360px, 42%) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
}

.ad-plugin-thumb {
  aspect-ratio: 1.91 / 1;
  min-height: 188px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 177, 0, 0.95), rgba(255, 223, 113, 0.96)),
    #ffe09a;
  overflow: hidden;
  position: relative;
}

.ad-plugin-thumb::before {
  content: "";
  width: 46%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.36);
  position: absolute;
  top: -22%;
  right: -10%;
}

.ad-plugin-thumb::after {
  content: "";
  width: 34%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.06);
  position: absolute;
  left: -8%;
  bottom: -24%;
}

.thumb-window {
  position: absolute;
  inset: 18px;
  z-index: 2;
}

.thumb-table {
  width: 58%;
  display: grid;
  gap: 8px;
}

.thumb-table span {
  height: 22px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.8);
}

.thumb-chat,
.thumb-alert {
  width: 52%;
  padding: 14px;
  border-radius: 8px;
  background: #111;
  color: #fff;
  position: absolute;
  right: 0;
  bottom: 0;
}

.thumb-chat b,
.thumb-chat small {
  display: block;
}

.thumb-chat small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
}

.thumb-number-list {
  width: 58%;
  display: grid;
  gap: 10px;
}

.thumb-number-list strong {
  padding: 10px 14px;
  border-radius: 8px;
  background: #fff;
  font-size: clamp(14px, 1.2vw, 18px);
}

.thumb-arrow {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: #111;
  color: var(--ad-yellow);
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 900;
  position: absolute;
  right: 9%;
  top: 50%;
  transform: translateY(-50%);
}

.thumb-form {
  width: 60%;
  display: grid;
  gap: 10px;
}

.thumb-form span {
  height: 28px;
  border-radius: 6px;
  background: #fff;
}

.thumb-form .is-alert {
  border: 3px solid #111;
  background: #fff4cd;
}

.thumb-alert {
  width: 58%;
  font-weight: 900;
}

.thumb-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  height: 74%;
}

.thumb-panels i {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.85);
}

.thumb-panels i:nth-child(2) {
  background: #111;
}

.thumb-switch {
  width: 92px;
  height: 44px;
  padding: 5px;
  border-radius: 999px;
  background: #111;
  position: absolute;
  right: 0;
  bottom: 0;
}

.thumb-switch span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ad-yellow);
  display: block;
  margin-left: auto;
}

.thumb-merge {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
}

.thumb-merge span,
.thumb-merge b {
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: clamp(16px, 1.4vw, 22px);
  font-weight: 900;
}

.thumb-merge span {
  background: rgba(255, 255, 255, 0.86);
}

.thumb-merge b {
  grid-column: 1 / -1;
  background: #111;
  color: var(--ad-yellow);
}

.ad-plugin-body {
  padding: 6px 14px 6px 0;
}

.ad-plugin-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.ad-plugin-meta span {
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #333;
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 900;
}

.ad-plugin-meta .ad-badge-free {
  background: var(--ad-yellow);
  color: #111;
}

.ad-plugin-body h3 {
  margin: 0 0 12px;
  font-size: clamp(24px, 2.3vw, 34px);
  font-weight: 900;
  line-height: 1.35;
}

.ad-plugin-body p {
  max-width: 680px;
  margin: 0;
  color: #515961;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.85;
}

.ad-plugin-body a {
  margin-top: 18px;
  color: #111;
  display: inline-flex;
  gap: 10px;
  font-size: 14px;
  font-weight: 900;
}

.ad-pricing {
  padding: 94px var(--side);
  background: var(--ad-yellow-pale);
  scroll-margin-top: 108px;
}

.ad-price-card {
  padding: clamp(28px, 5vw, 56px);
  border: 2px solid var(--ad-yellow);
  border-radius: 8px;
  background: #fff;
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 42px;
  align-items: center;
}

.ad-price-card span,
.ad-price-card small {
  display: block;
  font-weight: 900;
}

.ad-price-card strong {
  display: block;
  font-size: clamp(52px, 7vw, 92px);
  font-weight: 900;
  line-height: 1;
}

.ad-price-card small {
  margin-top: 12px;
  color: var(--ad-muted);
}

.ad-price-card p {
  margin: 0;
  color: #333;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}

.ad-download,
.ad-contact-section {
  padding: 98px var(--side);
  scroll-margin-top: 108px;
}

.ad-download-inner,
.ad-contact-inner {
  padding: clamp(32px, 6vw, 70px);
  border-radius: 8px;
  background: #111;
  color: #fff;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
}

.ad-download .ad-kv-label,
.ad-contact-section .ad-kv-label {
  color: var(--ad-yellow);
}

.ad-download p,
.ad-contact-section p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.74);
  margin: 0;
}

.ad-contact-section {
  padding-top: 0;
}

.ad-contact-actions {
  display: grid;
  gap: 16px;
  justify-items: end;
}

.ad-tel-link {
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

.ad-footer {
  padding: 42px var(--side);
  border-top: 1px solid var(--ad-line);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px 42px;
  align-items: center;
}

.ad-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
  font-size: 13px;
  font-weight: 800;
}

.ad-footer p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--ad-muted);
  font-size: 12px;
}

@media (max-width: 1020px) {
  .ad-site-header {
    width: calc(100vw - 28px);
    min-height: 68px;
    gap: 12px;
    top: 12px;
  }

  .ad-site-header::after {
    content: "";
    width: 24px;
    height: 18px;
    background:
      linear-gradient(#111, #111) 0 0 / 24px 2px no-repeat,
      linear-gradient(#111, #111) 0 8px / 24px 2px no-repeat,
      linear-gradient(#111, #111) 0 16px / 24px 2px no-repeat;
    position: absolute;
    top: 25px;
    right: 24px;
    pointer-events: none;
  }

  .ad-primary-nav {
    display: none;
  }

  .ad-menu-button {
    flex: 0 0 44px;
    margin-left: auto;
    display: block;
    position: absolute;
    top: 12px;
    right: 14px;
  }

  .ad-primary-nav.is-open {
    padding: 22px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
    display: grid;
    gap: 18px;
    position: absolute;
    top: 78px;
    right: 0;
    left: 0;
  }

  .ad-kv-inner,
  .ad-price-card,
  .ad-download-inner,
  .ad-contact-inner {
    grid-template-columns: 1fr;
  }

  .ad-kv-inner {
    min-height: auto;
  }

  .ad-plugin-row {
    grid-template-columns: 1fr;
  }

  .ad-plugin-controls {
    align-items: flex-start;
    flex-direction: column;
  }

  .ad-plugin-sort {
    width: 100%;
  }

  .ad-plugin-body {
    padding: 0;
  }

  .ad-intro-inner {
    grid-template-columns: 1fr;
  }

  .ad-contact-actions {
    justify-items: start;
  }
}

@media (max-width: 680px) {
  .ad-site-header {
    padding-left: 14px;
  }

  .ad-header-logo {
    width: 164px;
    height: 44px;
  }

  .ad-kv {
    padding-top: 116px;
    padding-bottom: 56px;
  }

  .ad-kv h1 {
    margin-bottom: 14px;
    font-size: 31px;
    line-height: 1.35;
  }

  .ad-kv h1 span {
    white-space: normal;
  }

  .ad-kv-label {
    max-width: 100%;
    font-size: 13px;
    line-height: 1.7;
    overflow-wrap: anywhere;
  }

  .ad-kv-copy > p:not(.ad-kv-label),
  .ad-section-head span,
  .ad-download p,
  .ad-contact-section p {
    font-size: 14px;
    overflow-wrap: anywhere;
  }

  .ad-kv-actions {
    display: grid;
  }

  .ad-kv-visual {
    width: min(330px, calc(100vw - 32px));
    margin: 18px 0 28px;
    padding-bottom: 0;
    left: auto;
    transform: none;
  }

  .ad-laptop {
    width: 100%;
    min-width: 0;
    max-width: 520px;
    margin: 0;
    transform: none;
  }

  .ad-laptop-screen {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding: 22px 16px;
    border-width: 6px;
    border-radius: 9px 9px 6px 6px;
  }

  .ad-laptop-message {
    min-width: 0;
  }

  .ad-laptop-base {
    height: 14px;
    margin: -1px -18px 0;
  }

  .ad-laptop-logo-line {
    margin-bottom: 18px;
    gap: 8px;
    font-size: clamp(18px, 5.2vw, 22px);
  }

  .ad-laptop-logo-line img {
    width: min(210px, 61%);
  }

  .ad-typing-copy {
    gap: 4px;
    font-size: clamp(21px, 6.4vw, 26px);
  }

  .ad-main-button,
  .ad-sub-button {
    width: 100%;
  }

  .ad-kv-screen {
    min-height: 250px;
    padding: 18px;
  }

  .ad-category-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .ad-category-list a {
    min-height: 66px;
  }

  .ad-plugin-sort a,
  .ad-plugin-filter a {
    min-height: 38px;
    padding: 0 14px;
    font-size: 13px;
  }

  .ad-plugin-list-section {
    padding-top: 70px;
    padding-bottom: 84px;
  }

  .ad-plugin-row {
    min-height: auto;
    padding: 12px;
    gap: 22px;
  }

  .ad-plugin-thumb {
    min-height: 0;
  }

  .thumb-window {
    inset: 12px;
  }

  .thumb-chat,
  .thumb-alert {
    width: 64%;
    padding: 10px;
  }

  .ad-plugin-body h3 {
    font-size: 24px;
  }

  .ad-plugin-body p {
    font-size: 14px;
  }

  .ad-pricing,
  .ad-download,
  .ad-contact-section {
    padding-right: var(--side);
    padding-left: var(--side);
  }

  .ad-download-inner,
  .ad-contact-inner {
    padding: 30px 20px;
  }

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

  .ad-footer nav {
    justify-content: flex-start;
  }
}
