@charset "utf-8";

:root {
  --red: #d00000;
  --orange: #F36D30;
  --black: #111111;
  --line: #d8d8d8;
  --soft: #f4f4f4;
}

#demo,
#market,
#targets,
#comparison,
#specs,
#faq,
#partner,
#contact {
  scroll-margin-top: 142px;
}

.hero {
  position: relative;
  min-height: clamp(620px, 78vh, 860px);
  overflow: hidden;
  background: #050607;
  isolation: isolate;
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  z-index: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(4%);
  transition: opacity .7s ease, transform .7s ease, visibility 0s linear .7s;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
  transition-delay: 0s;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, .54) 38%, rgba(0, 0, 0, .08));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(900px, calc(100% - 48px));
  height: 100%;
  padding: 0 0 54px;
  margin-left: clamp(24px, 7vw, 112px);
  color: #ffffff;
}

.hero-content h1,
.hero-content h2 {
  margin: 0;
  font-size: clamp(34px, 3.2vw, 58px);
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: .01em;
}

.hero-content .hero-title--long {
  font-size: clamp(31px, 2.8vw, 50px);
}

.hero-content > p {
  max-width: 840px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(14px, 1.08vw, 18px);
  font-weight: 600;
  line-height: 1.9;
  letter-spacing: .02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .5);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 18px;
  border: 1px solid rgba(243, 109, 48, .8);
  border-radius: 999px;
  color: #ffffff;
  background: var(--orange);
  font-weight: 800;
  text-decoration: none;
}

.button-primary {
  background: var(--orange);
}

.button-outline {
  border-color: rgba(255, 255, 255, .8);
  background: rgba(0, 0, 0, .28);
}

.hero-actions .button {
  min-height: 72px;
  padding: 0 32px;
  border-width: 2px;
  font-size: clamp(15px, 1.15vw, 19px);
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.hero-actions .button:hover,
.hero-actions .button:focus-visible {
  transform: translateY(-2px);
}

.hero-actions .button-primary {
  min-width: 372px;
  box-shadow: 0 12px 30px rgba(243, 109, 48, .22);
}

.hero-actions .button-outline {
  gap: 14px;
  min-width: 260px;
  border-color: rgba(255, 255, 255, .92);
  background: rgba(0, 0, 0, .34);
}

.hero-actions .button-outline::before {
  content: "▶";
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  padding-left: 2px;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 12px;
  line-height: 1;
}

.hero-arrow,
.hero-dot,
.hero-autoplay {
  margin: 0;
  border: 0;
  color: #ffffff;
  font: inherit;
  cursor: pointer;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 50%;
  background: rgba(0, 0, 0, .38);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .24);
  backdrop-filter: blur(8px);
  transform: translateY(-50%);
  transition: background .2s ease, transform .2s ease;
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
  background: rgba(243, 109, 48, .92);
  transform: translateY(-50%) scale(1.06);
}

.hero-arrow span {
  font-size: 26px;
  line-height: 1;
}

.hero-prev {
  left: clamp(12px, 2.4vw, 38px);
}

.hero-next {
  right: clamp(12px, 2.4vw, 38px);
}

.hero-pagination {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 999px;
  background: rgba(0, 0, 0, .34);
  backdrop-filter: blur(8px);
  transform: translateX(-50%);
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 50%;
  background: transparent;
  transition: width .2s ease, background .2s ease;
}

.hero-dot.is-active {
  width: 28px;
  border-radius: 999px;
  background: #F36D30;
}

.hero-autoplay {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border-left: 1px solid rgba(255, 255, 255, .36);
  background: transparent;
  font-size: 11px;
}

.hero-dot:focus-visible,
.hero-autoplay:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

/* ------------------------------------------------------------------------------------------- */

.nav {
  position: sticky;
  top: 88px;
  z-index: 20;
  display: flex;
  justify-content: center;
  gap: 4vw;
  padding: 14px 24px;
  border-top: 1px solid #e4e8ee;
  border-bottom: 1px solid #e4e8ee;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 700;
}

/* ------------------------------------------------------------------------------------------- */

.demo,
.market,
.targets,
.comparison,
.specs,
.faq,
.partner,
.contact {
  padding: clamp(54px, 7vw, 94px) clamp(20px, 6vw, 82px);
  background: #ffffff;
}

.demo-heading,
.market-heading,
.target-heading,
.comparison-heading,
.specs-heading,
.faq-heading,
.partner-heading,
.contact-heading {
  max-width: 1080px;
  margin: 0 auto 80px;
  color: var(--black);
  text-align: center;
}

.demo-heading-line,
.market-heading-line,
.target-heading-line,
.comparison-heading-line,
.specs-heading-line,
.faq-heading-line,
.partner-heading-line,
.contact-heading-line {
  display: block;
  width: 120px;
  height: 5px;
  margin: 0 auto 24px;
  border-radius: 999px;
  background: var(--orange);
}

.demo-heading h2,
.market-heading h2,
.target-heading h2,
.comparison-heading h2,
.specs-heading h2,
.faq-heading h2,
.partner-heading h2,
.contact-heading h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0;
}

.demo-heading h2 span,
.market-heading h2 span,
.target-heading h2 span,
.comparison-heading h2 span,
.specs-heading h2 span,
.faq-heading h2 span,
.partner-heading h2 span,
.contact-heading h2 span {
  color: var(--orange);
  white-space: nowrap;
}

.demo-heading p,
.market-heading p,
.target-heading p,
.comparison-heading p,
.specs-heading p,
.faq-heading p,
.partner-heading p,
.contact-heading p {
  margin: 20px 0 0;
  font-size: clamp(16px, 1.6vw, 21px);
  font-weight: 700;
  line-height: 1.9;
}

/* ------------------------------------------------------------------------------------------- */

.demo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 1840px;
  margin: 0 auto;
}

.demo-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid #d4d4d4;
  border-radius: 7px;
  background: #ffffff;
  box-shadow: 0 16px 30px rgba(20, 20, 20, .10);
}

.demo-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111111;
  object-fit: cover;
  cursor: pointer;
}

.demo-grid span {
  position: absolute;
  z-index: 1;
  top: 14px;
  left: 14px;
  display: grid;
  place-items: center;
  width: auto;
  height: 32px;
  padding: 0 11px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--red);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .06em;
}

.demo-grid strong {
  display: block;
  padding: 16px 18px 18px;
  color: var(--black);
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}

/* ------------------------------------------------------------------------------------------- */

.market {
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1280px;
  margin: 0 auto;
}

.market-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 980px;
  padding: 70px 22px 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(20, 20, 20, .10);
  text-align: center;
}

.market-num {
  position: absolute;
  top: -1px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(180deg, #e10000, #b90000);
  box-shadow: 0 8px 18px rgba(150, 0, 0, .24);
  font-size: 21px;
  font-weight: 900;
  transform: translate(-50%, -45%);
}

.market-icon {
  display: block;
  width: 130px;
  height: 130px;
  margin: 14px auto 8px;
  object-fit: contain;
}

.market-card h3 {
  margin: 0;
  color: var(--red);
  font-size: clamp(25px, 2.4vw, 34px);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: .08em;
}

.market-pre {
  margin: 22px 0 0;
  color: var(--black);
  font-size: 20px;
  font-weight: 800;
}

.market-number {
  margin-top: 12px;
  color: var(--red);
  font-weight: 900;
  line-height: 1;
}

.market-number strong {
  color: var(--red);
  font-size: clamp(52px, 5.8vw, 76px);
  font-weight: 900;
  letter-spacing: 0;
}

.market-number span {
  color: var(--red);
  font-size: clamp(22px, 2.3vw, 30px);
  font-weight: 900;
}

.market-number-bcp strong {
  font-size: clamp(38px, 4vw, 55px);
}

.market-label {
  width: min(100%, 300px);
  margin: 14px auto 0;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--black);
  background: #fff1f1;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.65;
}

.market-label strong {
  color: var(--red);
  font-size: 1.3em;
}

/* ------------------------------------------------------------------------------------------- */

.chart-title {
  margin: 26px 0 14px;
  padding: 8px 12px;
  border-radius: 6px;
  color: #333333;
  background: #efefef;
  font-size: 14px;
  font-weight: 900;
}

.chart-img {
  display: grid;
  place-items: center;
  margin: 0;
}

.chart-img img {
  display: block;
  width: 100%;
  max-height: 360px;
  object-fit: contain;
}

.bcp-chart img {
  max-height: 250px;
}

.risk-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.risk-list span {
  display: grid;
  place-items: center;
  min-height: 42px;
  border: 1px solid #f2bcbc;
  border-radius: 999px;
  color: var(--red);
  background: #fff5f5;
  font-size: 14px;
  font-weight: 900;
}

.market-text {
  margin: 22px 0 0;
  color: var(--black);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.75;
  text-align: left;
}

.source-box {
  margin-top: auto;
  padding: 16px 14px;
  border-radius: 10px;
  background: var(--soft);
  color: #222222;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.source-box p,
.note {
  margin: 0;
}

.note {
  margin-top: 12px;
  color: #555555;
  font-size: 11px;
  line-height: 1.6;
  text-align: left;
}

.market-message {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  max-width: 1280px;
  margin: 30px auto 0;
  padding: 26px 34px;
  border-radius: 10px;
  background: linear-gradient(90deg, #fff1f1, #ffffff);
}

.market-alert {
  position: relative;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 6px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-size: 0;
}

.market-alert::before {
  content: "!";
  position: absolute;
  top: 50%;
  left: 50%;
  color: var(--red);
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
  transform: translate(-50%, -52%);
}

.market-message strong {
  display: block;
  color: var(--red);
  font-size: clamp(19px, 2.1vw, 27px);
  line-height: 1.5;
}

.market-message p {
  margin: 8px 0 0;
  color: var(--black);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
}

.data-note {
  display: flex;
  gap: 18px;
  align-items: center;
  max-width: 1280px;
  margin: 24px auto 0;
  padding: 20px 26px;
  border: 1px dashed var(--red);
  border-radius: 10px;
  color: var(--red);
  background: #ffffff;
  font-weight: 800;
}

.data-note span {
  flex: 0 0 42px;
  height: 34px;
  border: 3px solid var(--red);
  border-top: 0;
  border-radius: 0 0 6px 6px;
}

.data-note p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

/* ------------------------------------------------------------------------------------------- */

.targets-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px;
  max-width: 1280px;
  margin: 0 auto;  
}

.targets-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid #d4d4d4;
  border-radius: 7px;
  background: #ffffff;
  box-shadow: 0 16px 30px rgba(20, 20, 20, .10);
}

.targets-grid img {
  width: 100%;
  object-fit: cover;
  cursor: pointer;
}

.targets-grid span {
  display: block;
  padding: 12px 18px 18px;
  color: var(--black);
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
}

/* ------------------------------------------------------------------------------------------- */

.comparison {
  background: #f6f7f9;
}

.comparison-content {
  max-width: 1280px;
  margin: 0 auto;
}

.comparison-photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 32px);
  margin-bottom: 36px;
}

.comparison-photo-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid #dfe2e7;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(20, 24, 32, .10);
}

.comparison-photo-card--kyuma {
  border-color: rgba(232, 64, 38, .38);
}

.comparison-photo-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 610 / 356;
  background: #e9ebef;
}

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

.comparison-photo-card__media--stretcher {
  background: #e7d8ca;
}

.comparison-photo-card__media--stretcher img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: none;
}

.comparison-photo-card figcaption {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 86px;
  padding: 18px 24px;
}

.comparison-photo-card figcaption span {
  flex: 0 0 auto;
  padding: 7px 13px;
  border-radius: 999px;
  background: #e9ecf0;
  color: #30343a;
  font-size: 13px;
  font-weight: 800;
}

.comparison-photo-card--kyuma figcaption span {
  background: var(--red);
  color: #ffffff;
}

.comparison-photo-card figcaption strong {
  color: var(--black);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.45;
}

.comparison-table-wrap {
  overflow: hidden;
  border: 1px solid #dfe2e7;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(20, 24, 32, .08);
}

.comparison-table-wrap:focus-visible {
  outline: 3px solid rgba(232, 64, 38, .35);
  outline-offset: 4px;
}

.comparison-table {
  width: 100%;
  border-spacing: 0;
  border-collapse: separate;
  color: #24272d;
  table-layout: fixed;
}

.comparison-table th,
.comparison-table td {
  padding: 20px 24px;
  border-right: 1px solid #e6e8ec;
  border-bottom: 1px solid #e6e8ec;
  font-size: clamp(14px, 1.35vw, 17px);
  line-height: 1.75;
  vertical-align: middle;
}

.comparison-table tr > *:last-child {
  border-right: 0;
}

.comparison-table tbody tr:last-child > * {
  border-bottom: 0;
}

.comparison-table thead th {
  background: #252a31;
  color: #ffffff;
  font-size: clamp(15px, 1.5vw, 19px);
  font-weight: 800;
  text-align: center;
}

.comparison-table thead th:first-child,
.comparison-table tbody th {
  width: 22%;
}

.comparison-table__kyuma-heading {
  background: var(--red) !important;
}

.comparison-table tbody th {
  background: #f2f4f6;
  font-weight: 800;
  text-align: left;
}

.comparison-table__kyuma {
  background: #fff3ef;
  color: #b52f1e;
}

.comparison-table td strong {
  font-weight: 800;
}

.comparison-mark {
  display: inline-grid;
  width: 27px;
  height: 27px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--red);
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  place-items: center;
  vertical-align: -2px;
}

.comparison-badge {
  display: block;
  width: fit-content;
  margin-bottom: 7px;
  padding: 3px 9px;
  border-radius: 999px;
  background: #ffe2d9;
  color: #b52f1e;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.4;
}

.comparison-table__warning > * {
  background: #fff9ea !important;
}

.comparison-badge--warning {
  background: #f4df9c;
  color: #735500;
}

.comparison-mark--warning {
  background: #c99600;
}

.comparison-note {
  margin: 20px 4px 0;
  color: #555d68;
  font-size: 13px;
  line-height: 1.8;
}

/* ------------------------------------------------------------------------------------------- */

.specs {
  background: #ffffff;
}

.specs-content {
  max-width: 1080px;
  margin: 0 auto;
}

.specs-table-wrap {
  overflow: hidden;
  border: 1px solid #dfe2e7;
  border-top: 6px solid var(--orange);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(20, 24, 32, .09);
}

.specs-table {
  width: 100%;
  border-spacing: 0;
  border-collapse: separate;
  color: #24272d;
  table-layout: fixed;
}

.specs-table th,
.specs-table td {
  padding: 21px 28px;
  border-bottom: 1px solid #e6e8ec;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.75;
  vertical-align: middle;
}

.specs-table tr:last-child th,
.specs-table tr:last-child td {
  border-bottom: 0;
}

.specs-table th {
  width: 30%;
  background: #f2f4f6;
  color: #20242b;
  font-weight: 800;
  text-align: left;
}

.specs-table td {
  background: #ffffff;
  font-weight: 700;
}

.specs-table tr:nth-child(even) td {
  background: #fffaf6;
}

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

.specs-materials li {
  display: flex;
  min-width: 0;
  padding: 12px 14px;
  border-left: 3px solid var(--orange);
  border-radius: 6px;
  background: #f7f8fa;
  flex-direction: column;
  gap: 3px;
}

.specs-materials span {
  color: #68707a;
  font-size: 12px;
  font-weight: 800;
}

.specs-materials strong {
  color: #20242b;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.55;
}

.specs-note {
  margin: 20px 4px 0;
  color: #555d68;
  font-size: 13px;
  line-height: 1.8;
}

/* ------------------------------------------------------------------------------------------- */

.faq {
  background: #f6f7f9;
}

.faq-content {
  max-width: 980px;
  margin: 0 auto;
}

.faq-list {
  border-top: 1px solid #dfe2e7;
}

.faq-item {
  border-bottom: 1px solid #dfe2e7;
  background: #ffffff;
}

.faq-item summary {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 78px;
  padding: 18px 68px 18px 24px;
  color: #20242b;
  cursor: pointer;
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 800;
  line-height: 1.6;
  list-style: none;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before,
.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 27px;
  width: 16px;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: translateY(-50%);
}

.faq-item summary::after {
  transform: translateY(-50%) rotate(90deg);
  transition: transform .2s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(0deg);
}

.faq-q,
.faq-a {
  display: inline-grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.faq-q {
  background: var(--orange);
}

.faq-answer {
  display: flex;
  gap: 18px;
  padding: 0 68px 25px 24px;
  color: #454c56;
  font-size: 16px;
  line-height: 1.9;
}

.faq-a {
  margin-top: 3px;
  background: #22272f;
}

.faq-answer p {
  margin: 0;
}

.faq-cta {
  width: min(100%, 480px);
  margin: 38px auto 0;
}

/* ------------------------------------------------------------------------------------------- */

.partner {
  background: #ffffff;
}

.partner-content {
  max-width: 1280px;
  margin: 0 auto;
}

.partner-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 4vw, 64px);
  overflow: hidden;
  padding: clamp(28px, 4.5vw, 64px);
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 18%, rgba(243, 109, 48, .25), transparent 28%),
    linear-gradient(135deg, #14171c 0%, #20242b 100%);
  box-shadow: 0 24px 60px rgba(20, 24, 32, .18);
}

.partner-panel::after {
  position: absolute;
  right: -90px;
  bottom: -130px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  box-shadow: 0 0 0 54px rgba(255, 255, 255, .025), 0 0 0 108px rgba(255, 255, 255, .018);
  content: "";
  pointer-events: none;
}

.partner-panel__lead {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
}

.partner-kicker,
.partner-flow__title > span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
}

.partner-panel__lead h3 {
  margin: 18px 0 0;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.45;
}

.partner-panel__lead p {
  max-width: 520px;
  margin: 22px 0 0;
  color: #d7dae0;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.9;
}

.section-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 62px;
  padding: 12px 18px 12px 24px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.4;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.section-cta:hover,
.section-cta:focus-visible {
  transform: translateY(-2px);
}

.section-cta span {
  display: grid;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  place-items: center;
}

.section-cta--orange {
  margin-top: 30px;
  background: var(--orange);
  box-shadow: 0 12px 28px rgba(243, 109, 48, .22);
  color: #ffffff;
}

.section-cta--orange span {
  background: #ffffff;
  color: var(--orange);
}

.section-cta--dark {
  margin-top: 30px;
  background: #20242b;
  color: #ffffff;
}

.section-cta--dark span {
  background: #ffffff;
  color: #20242b;
}

.partner-benefits {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.partner-benefits article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 16px;
  background: rgba(255, 255, 255, .075);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.partner-benefits__number {
  display: grid;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--orange);
  font-size: 13px;
  font-weight: 900;
  place-items: center;
}

.partner-benefits h3 {
  margin: 0;
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.5;
}

.partner-benefits p {
  margin: 7px 0 0;
  color: #d4d7dd;
  font-size: 14px;
  line-height: 1.8;
}

.partner-flow {
  display: grid;
  grid-template-columns: minmax(220px, .7fr) minmax(0, 1.3fr);
  gap: clamp(28px, 4vw, 60px);
  margin-top: 28px;
  padding: clamp(26px, 3.5vw, 42px);
  border: 1px solid #dfe2e7;
  border-radius: 20px;
  background: #f6f7f9;
}

.partner-flow__title h3 {
  margin: 9px 0 0;
  color: var(--black);
  font-size: clamp(21px, 2.2vw, 29px);
  line-height: 1.45;
}

.partner-flow__title p {
  margin: 10px 0 0;
  color: #5d646d;
  font-size: 14px;
  line-height: 1.75;
}

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

.partner-flow li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.partner-flow li:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -13px;
  color: #a9afb7;
  content: "→";
  font-weight: 900;
  transform: translateY(-50%);
}

.partner-flow li > span {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red);
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  place-items: center;
}

.partner-flow strong,
.partner-flow small {
  display: block;
}

.partner-flow strong {
  color: var(--black);
  font-size: 15px;
  line-height: 1.45;
}

.partner-flow small {
  margin-top: 4px;
  color: #6d737b;
  font-size: 11px;
  line-height: 1.5;
}

/* ------------------------------------------------------------------------------------------- */

.contact {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 12%, rgba(208, 0, 0, .34), transparent 28%),
    radial-gradient(circle at 8% 88%, rgba(243, 109, 48, .20), transparent 30%),
    #12151a;
}

.contact::before {
  position: absolute;
  top: -220px;
  left: 50%;
  width: 760px;
  height: 760px;
  border: 1px solid rgba(255, 255, 255, .04);
  border-radius: 50%;
  box-shadow: 0 0 0 100px rgba(255, 255, 255, .018), 0 0 0 200px rgba(255, 255, 255, .012);
  content: "";
  pointer-events: none;
  transform: translateX(-50%);
}

.contact-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}

.contact-heading {
  color: #ffffff;
}

.contact-heading h2 {
  color: #ffffff;
}

.contact-heading h2 span {
  color: var(--orange);
}

.contact-heading-line {
  background: var(--orange);
}

.contact-heading p {
  color: #d8dbe0;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 32px);
}

.contact-card {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: clamp(26px, 3.7vw, 48px);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .24);
}

.contact-card--partner {
  border-color: rgba(243, 109, 48, .55);
  background: #fff5ee;
}

.contact-card__label {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: #eceff2;
  color: #525a64;
  font-size: 12px;
  font-weight: 900;
}

.contact-card--partner .contact-card__label {
  background: #ffe1cf;
  color: #a83d00;
}

.contact-card h3 {
  margin: 20px 0 0;
  color: var(--black);
  font-size: clamp(24px, 2.7vw, 34px);
  line-height: 1.45;
}

.contact-card > p {
  margin: 15px 0 0;
  color: #565d66;
  font-size: clamp(14px, 1.3vw, 17px);
  line-height: 1.85;
}

.contact-card ul {
  display: grid;
  gap: 10px;
  width: 100%;
  margin: 24px 0 0;
  padding: 20px 22px;
  border-radius: 14px;
  background: #f4f5f7;
  list-style: none;
}

.contact-card--partner ul {
  background: #ffffff;
}

.contact-card li {
  position: relative;
  padding-left: 24px;
  color: #33383f;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.65;
}

.contact-card li::before {
  position: absolute;
  top: .35em;
  left: 0;
  display: grid;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--red);
  color: #ffffff;
  content: "✓";
  font-size: 9px;
  font-weight: 900;
  place-items: center;
}

.contact-card .section-cta {
  width: 100%;
  margin-top: auto;
  transform: translateY(30px);
}

.contact-card .section-cta:hover,
.contact-card .section-cta:focus-visible {
  transform: translateY(28px);
}

.contact-assurance {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 54px;
}

.contact-assurance span {
  padding: 9px 16px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
  color: #eef0f2;
  font-size: 13px;
  font-weight: 700;
}

/* ------------------------------------------------------------------------------------------- */

@media (max-width: 1180px) {
  .demo-grid,
  .market-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

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

  .partner-panel,
  .partner-flow {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  #demo,
  #market,
  #targets,
  #comparison,
  #specs,
  #faq,
  #partner,
  #contact {
    scroll-margin-top: 110px;
  }

  .nav {
    top: 68px;
    justify-content: flex-start;
    gap: 0;
    overflow-x: auto;
    padding: 0 8px;
    white-space: nowrap;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    flex: 0 0 auto;
    padding: 14px 12px;
  }

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

  .targets-grid span {
    padding: 11px 8px 14px;
    font-size: 14px;
    line-height: 1.35;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  .comparison-heading {
    margin-bottom: 52px;
  }

  .comparison-photos {
    grid-template-columns: 1fr;
  }

  .comparison-photo-card figcaption {
    min-height: 0;
    padding: 16px 18px;
  }

  .comparison-table-wrap {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .comparison-table,
  .comparison-table tbody,
  .comparison-table tr,
  .comparison-table th,
  .comparison-table td {
    display: block;
    width: 100%;
  }

  .comparison-table {
    table-layout: auto;
  }

  .comparison-table thead {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .comparison-table tbody {
    display: grid;
    gap: 16px;
  }

  .comparison-table tbody tr {
    overflow: hidden;
    border: 1px solid #dfe2e7;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(20, 24, 32, .07);
  }

  .comparison-table tbody th,
  .comparison-table tbody td {
    box-sizing: border-box;
    padding: 16px 18px;
    border-right: 0;
    border-bottom: 1px solid #e6e8ec;
  }

  .comparison-table tbody th {
    width: 100%;
  }

  .comparison-table tbody td:last-child {
    border-bottom: 0;
  }

  .comparison-table tbody td::before {
    display: block;
    margin-bottom: 6px;
    color: #6a7078;
    content: attr(data-label);
    font-size: 12px;
    font-weight: 800;
  }

  .comparison-table__kyuma::before {
    color: #b52f1e !important;
  }

  .specs-heading,
  .partner-heading,
  .contact-heading {
    margin-bottom: 52px;
  }

  .partner-panel {
    padding: 28px 22px;
  }

  .partner-flow ol,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .partner-flow li:not(:last-child)::after {
    top: calc(100% + 4px);
    right: auto;
    bottom: auto;
    left: 0;
    display: grid;
    width: 42px;
    height: 24px;
    content: "↓";
    transform: none;
    line-height: 1;
    place-items: center;
  }

  .partner-flow ol {
    gap: 34px;
  }

  .contact-card .section-cta {
    margin-top: 28px;
    transform: none;
  }

  .contact-card .section-cta:hover,
  .contact-card .section-cta:focus-visible {
    transform: translateY(-2px);
  }
}

@media (max-width: 640px) {
  .hero-bg {
    top: auto;
    bottom: 0;
    height: auto;
    object-fit: contain;
    object-position: center bottom;
  }

  .hero-slide::after {
    background: linear-gradient(
      180deg,
      #050607 0%,
      #050607 43%,
      rgba(5, 6, 7, .88) 60%,
      rgba(5, 6, 7, .28) 100%
    );
  }

  .hero-content {
    width: min(100% - 40px, 760px);
    margin-left: 20px;
    padding-bottom: 112px;
  }

  .hero-content h1,
  .hero-content h2 {
    font-size: clamp(24px, 7.2vw, 30px);
    line-height: 1.35;
    letter-spacing: -.03em;
    text-wrap: balance;
    white-space: normal;
  }

  .hero-content .hero-title--long {
    font-size: clamp(21px, 6.2vw, 26px);
  }

  .hero-content > p {
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.7;
    letter-spacing: 0;
  }

  .hero-content > p br {
    display: none;
  }

  .hero-actions {
    gap: 12px;
    margin-top: 24px;
  }

  .hero-actions .button {
    width: 100%;
    min-width: 0;
    min-height: 56px;
    padding-inline: 18px;
    font-size: 14px;
  }

  .hero-actions .button-outline::before {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
  }

  .hero-arrow {
    top: auto;
    bottom: 18px;
    width: 42px;
    height: 42px;
    transform: none;
  }

  .hero-arrow:hover,
  .hero-arrow:focus-visible {
    transform: scale(1.05);
  }

  .hero-pagination {
    bottom: 20px;
  }

  .market {
    padding-inline: 14px;
  }

  .market-card {
    padding: 58px 16px 18px;
  }

  .chart-img {
    min-height: 260px;
  }

  .market-message {
    grid-template-columns: 1fr;
    padding: 22px 18px;
  }

  .market-alert {
    margin: 0 auto;
  }

  .comparison,
  .specs,
  .faq {
    padding-inline: 16px;
  }

  .specs-table-wrap {
    border-top-width: 5px;
    border-radius: 14px;
  }

  .specs-table,
  .specs-table tbody,
  .specs-table tr,
  .specs-table th,
  .specs-table td {
    display: block;
    width: 100%;
  }

  .specs-table tr {
    border-bottom: 1px solid #e6e8ec;
  }

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

  .specs-table th,
  .specs-table td {
    box-sizing: border-box;
    border-bottom: 0;
  }

  .specs-table th {
    padding: 12px 18px;
    background: #f2f4f6;
    font-size: 13px;
  }

  .specs-table td {
    padding: 15px 18px 18px;
    font-size: 15px;
  }

  .specs-materials {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .faq-item summary {
    min-height: 66px;
    gap: 12px;
    padding: 15px 48px 15px 16px;
    font-size: 15px;
  }

  .faq-item summary::before,
  .faq-item summary::after {
    right: 18px;
    width: 14px;
  }

  .faq-q,
  .faq-a {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
    font-size: 12px;
  }

  .faq-answer {
    gap: 12px;
    padding: 0 18px 20px 16px;
    font-size: 14px;
    line-height: 1.8;
  }

  .faq-cta {
    margin-top: 26px;
  }

  .comparison-photo-card figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .partner,
  .contact {
    padding-inline: 16px;
  }

  .partner-benefits article {
    grid-template-columns: 1fr;
  }

  .partner-flow {
    padding: 24px 18px;
  }

  .section-cta {
    width: 100%;
    gap: 14px;
    padding-left: 18px;
    font-size: 14px;
  }

  .contact-card {
    padding: 26px 20px;
  }

  .targets-grid {
    gap: 12px 8px;
  }

  .targets-grid span {
    padding-inline: 6px;
    font-size: 13px;
  }

  .contact-card ul {
    padding: 18px 16px;
  }

  .contact-assurance {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-assurance span {
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-arrow,
  .hero-dot {
    transition: none;
  }
}
