:root {
  --blue: #06236f;
  --deep: #02133e;
  --yellow: #ffc800;
  --text: #071945;
}

* {
  box-sizing: border-box;
}

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

ul {
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: 'Yu Gothic', Meiryo, 'Hiragino Kaku Gothic ProN', Arial, sans-serif;
  letter-spacing: 0;
}

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

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

.container {
  width: min(1180px, 100% - 48px);
  margin: 0 auto;
}

.site-header {
  height: 70px;
  background: linear-gradient(#fff 0%, #f8f9fd 100%);
  box-shadow: rgba(0, 20, 70, 0.14) 0 2px 14px;
  position: relative;
  z-index: 5;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  width: 207px;
  height: auto;
}

.contact-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffe26a 0%, var(--yellow) 58%, #f6b800 100%);
  color: #071022;
  font-weight: 800;
  font-size: 15px;
  box-shadow:
    rgba(153, 112, 0, 0.18) 0 -2px 0 inset,
    rgba(255, 196, 0, 0.28) 0 8px 20px;
}

.mail-icon {
  width: 23px;
  height: 16px;
  border: 2px solid;
  border-radius: 2px;
  position: relative;
  flex: 0 0 auto;
}

.mail-icon::before,
.mail-icon::after {
  content: '';
  position: absolute;
  top: 3px;
  width: 12px;
  height: 2px;
  background: currentcolor;
}

.mail-icon::before {
  left: -1px;
  transform: rotate(35deg);
}

.mail-icon::after {
  right: -1px;
  transform: rotate(-35deg);
}

.chevron {
  font-size: 28px;
  line-height: 1;
}

.jetson-page {
  --jetson-green: #76b900;
  --jetson-ink: #090b0c;
  --jetson-paper: #f4f5f1;
  --jetson-line: #cfd2ca;
  color: var(--jetson-ink);
  background: var(--jetson-paper);
  font-family: Arial, 'Noto Sans JP', sans-serif;
}

.jetson-hero {
  color: #fff;
  background: #080a0b;
  min-height: 900px;
  padding: 24px max(5vw, 24px) 0;
  overflow: hidden;
}

.jetson-brandline {
  letter-spacing: 0.12em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding-bottom: 22px;
  font-size: 15px;
  font-weight: 900;
}

.jetson-brandline b,
.eyebrow {
  color: var(--jetson-green);
}

.heroGrid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 5vw;
  max-width: 1380px;
  margin: 95px auto 70px;
}

.eyebrow {
  letter-spacing: 0.19em;
  font-size: 16px;
  font-weight: 900;
}

.heroEyebrow {
  font-size: 18px;
}

.jetson-hero h1 {
  letter-spacing: -0.055em;
  margin: 24px 0 30px;
  font-size: clamp(32px, 3.7vw, 66px);
  font-weight: 700;
  line-height: 1.06;
}

.jetson-hero h1 em {
  color: var(--jetson-green);
  font-style: normal;
}

.heroLine {
  white-space: nowrap;
  display: block;
}

.heroCopy {
  color: #d6dad6;
  max-width: 680px;
  margin-bottom: 42px;
  font-size: 21px;
  line-height: 1.85;
}

.primary {
  background: var(--jetson-green);
  color: #0b0d0c;
  padding: 19px 30px;
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
}

.heroCta,
.heroCta:link,
.heroCta:visited {
  color: #fff;
}

.heroVisual {
  isolation: isolate;
  min-width: 0;
  position: relative;
}

.heroVisual::after {
  content: '';
  pointer-events: none;
  position: absolute;
  inset: 0;
  box-shadow: #080a0b 0 0 55px 28px inset;
}

.heroVisual img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  max-height: 610px;
  display: block;
}

.orbit {
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(118, 185, 0, 0.32);
  border-radius: 50%;
  position: absolute;
  top: 47%;
  left: 50%;
}

.orbit::after {
  content: '';
  background: var(--jetson-green);
  border-radius: 50%;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 12%;
  left: 12%;
  box-shadow: rgba(118, 185, 0, 0.9) 0 0 16px;
}

.orbitOne {
  aspect-ratio: 1.18 / 1;
  width: 78%;
  animation: orbitSpin 24s linear infinite;
}

.orbitTwo {
  aspect-ratio: 1;
  border-color: rgba(255, 255, 255, 0.15);
  width: 58%;
  animation: orbitSpinReverse 34s linear infinite;
}

@keyframes orbitSpin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes orbitSpinReverse {
  from {
    transform: translate(-50%, -50%) rotate(360deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

.heroStats {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  grid-template-columns: repeat(3, 1fr);
  max-width: 1380px;
  margin: auto;
  display: grid;
}

.heroStats div {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  padding: 30px;
}

.heroStats b,
.heroStats span {
  display: block;
}

.heroStats b {
  color: var(--jetson-green);
  letter-spacing: 0.13em;
  font-size: 16px;
}

.heroStats span {
  color: #d2d6d2;
  margin-top: 11px;
  font-size: 17px;
}

.intro,
.lineup,
.compare,
.usecases {
  max-width: 1500px;
  margin: auto;
  padding: 120px max(5vw, 24px);
}

.intro h2,
.sectionHead h2,
.compare h2,
.usecases h2,
.finalCta h2 {
  letter-spacing: -0.05em;
  margin: 18px 0 60px;
  font-size: clamp(38px, 5vw, 70px);
  font-weight: 700;
  line-height: 1.08;
}

.reasons {
  border-top: 1px solid var(--jetson-line);
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}

.reasons article {
  border-right: 1px solid var(--jetson-line);
  padding: 40px 40px 20px 0;
}

.reasons article + article {
  padding-left: 40px;
}

.reasons b {
  color: var(--jetson-green);
  font-size: 17px;
}

.reasons h3 {
  margin: 45px 0 14px;
  font-size: 29px;
  font-weight: 700;
}

.reasons p,
.sectionHead > p,
.productBody > p,
.usecases p {
  color: #555c56;
  font-size: 17px;
  line-height: 1.85;
}

.lineup {
  background: #e9ebe5;
  max-width: none;
}

.sectionHead {
  grid-template-columns: 1.4fr 0.6fr;
  align-items: end;
  gap: 50px;
  max-width: 1380px;
  margin: auto;
  display: grid;
}

.sectionHead > p {
  margin-bottom: 64px;
}

.cards {
  gap: 32px;
  max-width: 1380px;
  margin: auto;
  display: grid;
}

.product {
  background: #fff;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  display: grid;
}

.product:nth-child(2n) {
  direction: rtl;
}

.product > * {
  direction: ltr;
}

.productImage {
  background: #111;
  min-height: 500px;
  position: relative;
  overflow: hidden;
}

.productImage span {
  z-index: 2;
  background: var(--jetson-green);
  letter-spacing: 0.12em;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 400;
  position: absolute;
  top: 24px;
  left: 24px;
}

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

.productBody {
  padding: 55px;
}

.productIndex {
  font-weight: 900;
  color: var(--jetson-green) !important;
  font-size: 18px !important;
}

.productBody h3 {
  letter-spacing: -0.045em;
  margin: 12px 0 4px;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 700;
}

.productBody h4 {
  margin: 0 0 25px;
  font-size: 22px;
  font-weight: 700;
}

.productBody ul {
  border-top: 1px solid var(--jetson-line);
  grid-template-columns: 1fr 1fr;
  margin: 28px 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.productBody li {
  border-bottom: 1px solid var(--jetson-line);
  padding: 14px 0;
  font-size: 16px;
  font-weight: 700;
}

.productBody strong {
  margin: 25px 0;
  font-size: 18px;
  display: block;
}

.productBody a {
  color: #fff;
  background: #0a0c0b;
  padding: 16px 22px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
}

.compare {
  max-width: 1380px;
}

.tableWrap {
  overflow-x: auto;
}

.jetson-page table {
  border-collapse: collapse;
  background: #fff;
  width: 100%;
}

.jetson-page th,
.jetson-page td {
  text-align: left;
  border-bottom: 1px solid var(--jetson-line);
  padding: 23px;
  font-size: 17px;
}

.jetson-page thead th {
  color: #fff;
  letter-spacing: 0.1em;
  background: #111;
  font-size: 14px;
}

.jetson-page tbody th {
  color: #4b7900;
}

.usecases {
  color: #fff;
  background: #101211;
  max-width: none;
}

.usecases > .eyebrow,
.usecases > h2,
.usecases > div {
  max-width: 1380px;
  margin-left: auto;
  margin-right: auto;
}

.usecases > div {
  border-top: 1px solid rgba(255, 255, 255, 0.19);
  grid-template-columns: repeat(4, 1fr);
  display: grid;
}

.usecases article {
  border-right: 1px solid rgba(255, 255, 255, 0.19);
  padding: 40px 32px;
}

.usecases span {
  color: var(--jetson-green);
  letter-spacing: 0.15em;
  font-size: 15px;
}

.usecases h3 {
  margin: 65px 0 15px;
  font-size: 22px;
  font-weight: 700;
}

.usecases p {
  color: #bfc4bf;
}

.finalCta {
  text-align: center;
  background: var(--jetson-green);
  padding: 130px 24px;
}

.finalCta > * {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.finalCta .eyebrow {
  color: #111;
}

.finalCta h2 {
  margin-bottom: 22px;
}

.finalCta p {
  margin-bottom: 32px;
  font-size: 18px;
}

.finalCta .primary {
  color: #fff;
  background: #111;
}

.jetson-note {
  color: #9ca19d;
  background: #090b0a;
  justify-content: space-between;
  gap: 30px;
  padding: 35px max(5vw, 24px);
  font-size: 14px;
  line-height: 1.6;
  display: flex;
}

.jetson-note span {
  color: #fff;
  font-weight: 900;
}

.jetson-note p {
  text-align: right;
  max-width: 750px;
  margin: 0;
}

.site-footer {
  margin-top: 0;
  padding: 42px 0 14px;
  background: #e9e9eb;
  color: #4f535c;
  border-top: 1px solid #dfdfe2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 0.7fr;
  gap: 92px;
  padding-bottom: 48px;
}

.footer-logo {
  width: 210px;
  margin-bottom: 22px;
}

.listing-row {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  max-width: 350px;
  margin-bottom: 24px;
}

.listing-row p,
.footer-office p,
.footer-office li,
.footer-office a,
.footer-policy a {
  margin: 0;
  color: #5b5f69;
  font-size: 14px;
  line-height: 1.75;
  font-weight: 600;
}

.jpx-logo {
  width: 46px;
  height: auto;
  background: #fff;
}

.footer-site-link {
  display: inline-flex;
  min-width: 190px;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid #d2d2d6;
  color: #555a64;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
}

.footer-office h2,
.footer-policy h2 {
  margin: 0 0 24px;
  color: #20242b;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 900;
}

.footer-office p + p {
  margin-top: 4px;
}

.footer-office h2:nth-of-type(2) {
  margin-top: 30px;
  margin-bottom: 22px;
}

.footer-office ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-office li + li {
  margin-top: 4px;
}

.footer-policy a {
  display: inline-block;
}

.footer-office a:hover,
.footer-policy a:hover {
  text-decoration: underline;
}

.copyright {
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid #e6e6e8;
  color: #9a9da5;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  .orbit {
    animation: none;
  }
}

@media (max-width: 980px) {
  .container {
    width: min(100% - 28px, 760px);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px;
  }

  .footer-policy {
    grid-column: 1 / -1;
  }
}

@media (max-width: 850px) {
  .jetson-hero {
    min-height: auto;
  }

  .heroGrid {
    grid-template-columns: 1fr;
    margin: 70px auto 55px;
  }

  .heroVisual {
    max-width: 600px;
    margin: auto;
  }

  .heroVisual::after {
    box-shadow: #080a0b 0 0 35px 18px inset;
  }

  .heroEyebrow {
    font-size: 15px;
  }

  .heroCopy {
    font-size: 18px;
  }

  .heroStats,
  .reasons,
  .sectionHead,
  .product,
  .usecases > div {
    grid-template-columns: 1fr;
  }

  .heroStats div,
  .reasons article {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    border-right: 0;
  }

  .heroStats b {
    font-size: 14px;
  }

  .heroStats span {
    font-size: 16px;
  }

  .reasons article,
  .reasons article + article {
    padding: 30px 0;
  }

  .product:nth-child(2n) {
    direction: ltr;
  }

  .productImage {
    min-height: 340px;
  }

  .productBody {
    padding: 32px;
  }

  .sectionHead > p {
    margin-bottom: 40px;
  }

  .usecases article {
    border-bottom: 1px solid rgba(255, 255, 255, 0.19);
    border-right: 0;
  }

  .intro,
  .lineup,
  .compare,
  .usecases {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .jetson-note {
    display: block;
  }

  .jetson-note p {
    text-align: left;
    margin-top: 15px;
  }
}

@media (max-width: 640px) {
  .site-header {
    height: auto;
    padding: 10px 0;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .logo {
    width: 160px;
  }

  .jetson-hero h1 {
    font-size: 7.5vw;
  }

  .contact-button {
    width: 100%;
    padding: 0 12px;
    font-size: 13px;
  }

  .site-footer {
    padding-top: 34px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 34px;
  }

  .footer-policy {
    grid-column: auto;
  }

  .footer-logo {
    width: 185px;
  }
}
