:root {
  --color-primary: #4169e1;
  --color-secondary: #7c5ce7;
  --color-background: #ffffff;
  --color-surface: #f7f8fc;
  --color-text: #1f2937;
  --color-text-subtle: #667085;
  --color-border: #e5e7eb;
  --color-success: #16803c;
  --color-preparing: #667085;
  --shadow-sm: 0 8px 24px rgba(31, 41, 55, 0.06);
  --radius: 16px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-background);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", Meiryo,
    sans-serif;
  font-size: 16px;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

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

a {
  color: var(--color-primary);
  text-underline-offset: 0.18em;
}

a:hover {
  color: #294fbd;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(65, 105, 225, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--color-text);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(229, 231, 235, 0.88);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

.header-inner,
.page-shell,
.section-inner,
.footer-inner {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

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

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 44px;
  align-items: center;
}

.brand img {
  width: 168px;
  height: auto;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle-lines {
  position: relative;
  margin: auto;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  position: absolute;
  left: 0;
  content: "";
}

.nav-toggle-lines::before {
  top: -7px;
}

.nav-toggle-lines::after {
  top: 7px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-nav ul {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.site-nav a {
  display: inline-flex;
  min-height: 44px;
  padding: 8px 14px;
  align-items: center;
  border-radius: 9px;
  color: var(--color-text);
  font-weight: 650;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--color-primary);
  background: #f1f4ff;
}

main {
  min-height: 55vh;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
}

.hero::before {
  position: absolute;
  top: -180px;
  right: max(-220px, calc((100vw - var(--container)) / 2 - 280px));
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(47, 115, 246, 0.12), rgba(154, 92, 240, 0.12));
  content: "";
}

.hero-inner {
  position: relative;
  display: grid;
  width: min(100% - 40px, var(--container));
  min-height: 570px;
  margin-inline: auto;
  padding-block: 76px;
  align-items: center;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 72px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.app-hero h1 {
  margin: 0;
  line-height: 1.22;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(2.35rem, 5.5vw, 4.4rem);
}

.hero-copy {
  max-width: 700px;
  margin: 28px 0 0;
  color: var(--color-text-subtle);
  font-size: clamp(1rem, 2vw, 1.15rem);
}

.button-row {
  display: flex;
  margin-top: 34px;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 11px 22px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 11px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #2f73f6 0%, #8d58e7 100%);
  box-shadow: 0 10px 22px rgba(65, 105, 225, 0.2);
}

.button-primary:hover {
  color: #fff;
  box-shadow: 0 13px 28px rgba(65, 105, 225, 0.26);
}

.button-secondary {
  border-color: var(--color-border);
  color: var(--color-text);
  background: #fff;
}

.button-secondary:hover {
  border-color: #b6c5f6;
  color: var(--color-primary);
}

.hero-visual {
  position: relative;
  display: flex;
  min-height: 340px;
  align-items: center;
  justify-content: center;
}

.hero-visual::before {
  position: absolute;
  width: min(100%, 330px);
  aspect-ratio: 1;
  border: 1px solid rgba(65, 105, 225, 0.16);
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 32px 80px rgba(73, 76, 133, 0.12);
  content: "";
  transform: rotate(7deg);
}

.hero-visual img {
  position: relative;
  width: min(76%, 240px);
  border-radius: 25%;
  box-shadow: 0 18px 48px rgba(31, 41, 55, 0.18);
}

.section {
  padding-block: 88px;
}

.section-muted {
  border-block: 1px solid var(--color-border);
  background: var(--color-surface);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 38px;
}

.section-heading h2,
.content-section h2 {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.45rem);
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.section-heading p {
  margin: 14px 0 0;
  color: var(--color-text-subtle);
}

.about-copy {
  max-width: 780px;
  font-size: 1.06rem;
}

.about-copy p {
  margin: 0 0 1em;
}

.value-grid,
.app-grid {
  display: grid;
  gap: 20px;
}

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

.value-card,
.app-card,
.content-card,
.contact-panel,
.business-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.value-card {
  padding: 30px;
}

.value-number {
  display: inline-flex;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #3659c7;
  background: #eef2ff;
  font-weight: 750;
}

.value-card h3,
.app-card h3 {
  margin: 0;
  line-height: 1.45;
}

.value-card p,
.app-card p {
  margin: 10px 0 0;
  color: var(--color-text-subtle);
}

.app-group + .app-group {
  margin-top: 54px;
}

.app-group-title {
  display: flex;
  margin: 0 0 20px;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
}

.app-count {
  color: var(--color-text-subtle);
  font-size: 0.88rem;
  font-weight: 500;
}

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

.app-card {
  position: relative;
  display: flex;
  min-height: 100%;
  padding: 24px;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.app-card:hover {
  border-color: #c7d2fe;
  box-shadow: 0 12px 32px rgba(31, 41, 55, 0.09);
  transform: translateY(-3px);
}

.app-card-top {
  display: flex;
  margin-bottom: 18px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.app-icon {
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  object-fit: cover;
  background: var(--color-surface);
}

.status {
  display: inline-flex;
  min-height: 28px;
  padding: 3px 10px;
  align-items: center;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 750;
  white-space: nowrap;
}

.status-live {
  color: var(--color-success);
  background: #eaf7ee;
}

.status-preparing {
  color: #596273;
  background: #eef0f3;
}

.platforms {
  margin-top: auto;
  padding-top: 20px;
  color: var(--color-text-subtle);
  font-size: 0.88rem;
}

.card-link {
  display: inline-flex;
  min-height: 44px;
  margin-top: 14px;
  align-items: center;
  font-weight: 700;
  text-decoration: none;
}

.card-link::after {
  margin-left: 0.35em;
  content: "→";
}

.page-hero,
.app-hero {
  padding-block: 72px 54px;
  border-bottom: 1px solid var(--color-border);
  background: linear-gradient(180deg, #fafbff 0%, #fff 100%);
}

.page-hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.45rem);
}

.page-lead {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--color-text-subtle);
  font-size: 1.08rem;
}

.content-section {
  padding-block: 64px 88px;
}

.content-narrow {
  max-width: 820px;
}

.content-section h2 {
  margin-top: 52px;
  font-size: 1.65rem;
}

.content-section h2:first-child {
  margin-top: 0;
}

.business-card {
  margin-top: 28px;
  padding: 6px 28px;
}

.business-row {
  display: grid;
  padding-block: 18px;
  border-bottom: 1px solid var(--color-border);
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 24px;
}

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

.business-row dt {
  font-weight: 700;
}

.business-row dd {
  margin: 0;
}

.contact-panel {
  margin-top: 28px;
  padding: 28px;
}

.email-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-size: clamp(1.05rem, 3vw, 1.35rem);
  font-weight: 750;
}

.check-list,
.feature-list {
  padding-left: 1.35em;
}

.check-list li,
.feature-list li {
  margin-block: 0.45em;
}

.notice {
  margin-top: 28px;
  padding: 20px 22px;
  border: 1px solid #e5ddc8;
  border-left: 4px solid #b68a2b;
  border-radius: 12px;
  background: #fffbeb;
}

.notice p {
  margin: 0;
}

.app-hero-inner {
  display: grid;
  align-items: center;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 38px;
}

.app-hero .app-icon {
  width: 160px;
  height: 160px;
  border-radius: 36px;
}

.app-hero h1 {
  margin-top: 14px;
  font-size: clamp(2rem, 5vw, 3.35rem);
}

.app-summary {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--color-text-subtle);
}

.app-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(270px, 0.6fr);
  gap: 32px;
}

.content-card {
  padding: 30px;
}

.content-card + .content-card {
  margin-top: 20px;
}

.content-card h2 {
  margin: 0 0 18px;
  font-size: 1.35rem;
}

.meta-list {
  margin: 0;
}

.meta-list div {
  padding-block: 14px;
  border-bottom: 1px solid var(--color-border);
}

.meta-list div:last-child {
  border-bottom: 0;
}

.meta-list dt {
  color: var(--color-text-subtle);
  font-size: 0.86rem;
}

.meta-list dd {
  margin: 3px 0 0;
  font-weight: 650;
}

.text-link-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.text-link-list li + li {
  margin-top: 6px;
}

.text-link-list a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-weight: 650;
}

.prepared-message {
  max-width: 780px;
}

/* Existing policy and terms pages */
.container {
  width: min(100% - 40px, 880px);
  margin: 0 auto;
  padding-block: 60px 80px;
}

.container > h1 {
  margin: 0 0 22px;
  font-size: clamp(2rem, 5vw, 2.8rem);
  line-height: 1.35;
}

.container > h2 {
  margin: 38px 0 10px;
  padding-left: 14px;
  border-left: 4px solid var(--color-primary);
  font-size: 1.25rem;
}

.container .intro,
.container .contact {
  margin-block: 22px;
  padding: 20px 22px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: var(--color-surface);
}

.container .nav {
  display: flex;
  margin-bottom: 26px;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.container .nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-weight: 650;
}

.updated {
  margin-top: 36px;
  color: var(--color-text-subtle);
  font-size: 0.88rem;
  text-align: right;
}

.site-footer {
  border-top: 1px solid var(--color-border);
  color: #d8deeb;
  background: #202736;
}

.footer-inner {
  display: grid;
  padding-block: 52px 28px;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 44px;
}

.footer-brand {
  margin: 0;
  color: #fff;
  font-size: 1.22rem;
  font-weight: 750;
}

.footer-tagline {
  margin: 8px 0 0;
  color: #aeb7c8;
}

.footer-title {
  margin: 0 0 10px;
  color: #fff;
  font-size: 0.92rem;
}

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

.footer-links a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  color: #d8deeb;
  text-decoration: none;
}

.footer-links a:hover,
.footer-address a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-address {
  margin: 0;
  font-style: normal;
}

.footer-address a {
  display: inline-block;
  margin-top: 10px;
  color: #d8deeb;
}

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #aeb7c8;
  font-size: 0.88rem;
}

[hidden] {
  display: none !important;
}

@media (max-width: 900px) {
  .hero-inner {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr) 250px;
    gap: 38px;
  }

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

  .app-detail-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 767px) {
  .header-inner,
  .page-shell,
  .section-inner,
  .footer-inner,
  .hero-inner,
  .container {
    width: min(100% - 32px, var(--container));
  }

  .header-inner {
    min-height: 64px;
  }

  .brand img {
    width: 150px;
  }

  [data-js-ready] .nav-toggle {
    display: block;
  }

  .site-nav ul {
    flex-wrap: wrap;
  }

  [data-js-ready] .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    padding: 10px 16px 16px;
    border-bottom: 1px solid var(--color-border);
    background: #fff;
    box-shadow: 0 12px 24px rgba(31, 41, 55, 0.08);
  }

  [data-js-ready] .site-nav[data-open="true"] {
    display: block;
  }

  [data-js-ready] .site-nav ul {
    display: block;
  }

  [data-js-ready] .site-nav a {
    width: 100%;
  }

  .hero-inner {
    padding-block: 58px 70px;
    grid-template-columns: 1fr;
  }

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

  .hero-visual::before {
    width: 250px;
  }

  .hero-visual img {
    width: 184px;
  }

  .section {
    padding-block: 64px;
  }

  .value-grid,
  .app-grid {
    grid-template-columns: 1fr;
  }

  .page-hero,
  .app-hero {
    padding-block: 52px 40px;
  }

  .content-section {
    padding-block: 48px 64px;
  }

  .app-hero-inner {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 22px;
  }

  .app-hero .app-icon {
    width: 96px;
    height: 96px;
    border-radius: 24px;
  }

  .business-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

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

  .footer-bottom {
    grid-column: 1;
  }
}

@media (max-width: 480px) {
  .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

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

  .content-card,
  .contact-panel,
  .business-card,
  .value-card,
  .app-card {
    padding: 22px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* 2026 visual refresh */
:root {
  --color-primary: #5261f3;
  --color-secondary: #ff6f61;
  --color-accent: #43d3a4;
  --color-background: #fbfaf7;
  --color-surface: #f1f0ec;
  --color-text: #132238;
  --color-text-subtle: #5f6b7a;
  --color-border: rgba(19, 34, 56, 0.12);
  --color-success: #087f5b;
  --shadow-sm: 0 14px 42px rgba(23, 32, 61, 0.08);
  --shadow-lg: 0 28px 80px rgba(17, 27, 52, 0.16);
  --radius: 24px;
  --container: 1180px;
}

body {
  background:
    radial-gradient(circle at 8% 3%, rgba(82, 97, 243, 0.05), transparent 28rem),
    var(--color-background);
  letter-spacing: 0.01em;
}

::selection {
  color: #fff;
  background: #5261f3;
}

.site-header {
  border-bottom: 1px solid rgba(19, 34, 56, 0.08);
  background: rgba(251, 250, 247, 0.86);
  backdrop-filter: blur(18px) saturate(140%);
}

.header-inner {
  min-height: 80px;
}

.brand img {
  width: 176px;
}

.site-nav ul {
  gap: 2px;
  padding: 5px;
  border: 1px solid rgba(19, 34, 56, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 6px 24px rgba(21, 31, 59, 0.04);
}

.site-nav a {
  min-height: 40px;
  padding-inline: 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  letter-spacing: 0;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: #fff;
  background: #17243a;
}

.hero {
  isolation: isolate;
  color: #fff;
  border-bottom: 0;
  background:
    linear-gradient(115deg, rgba(12, 23, 43, 0.98) 0%, rgba(19, 35, 66, 0.96) 54%, rgba(39, 41, 91, 0.94) 100%);
}

.hero::before {
  z-index: -1;
  top: -18rem;
  right: -8rem;
  width: 44rem;
  height: 44rem;
  opacity: 0.72;
  background: radial-gradient(circle at 50% 50%, rgba(98, 109, 255, 0.58), rgba(98, 109, 255, 0) 67%);
  filter: blur(8px);
}

.hero::after {
  position: absolute;
  z-index: -1;
  bottom: -18rem;
  left: -10rem;
  width: 36rem;
  height: 36rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(67, 211, 164, 0.16), rgba(67, 211, 164, 0) 70%);
  content: "";
}

.hero-inner {
  min-height: 700px;
  padding-block: 92px 112px;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: 74px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-kicker {
  display: inline-flex;
  margin: 0 0 24px;
  align-items: center;
  gap: 10px;
  color: #cbd2ff;
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-kicker span {
  width: 24px;
  height: 1px;
  background: #43d3a4;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(3rem, 6.4vw, 5.8rem);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(90deg, #aeb7ff 0%, #68e5bb 48%, #ff9a8f 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-copy {
  max-width: 650px;
  margin-top: 30px;
  color: rgba(235, 239, 248, 0.76);
  font-size: clamp(1rem, 1.7vw, 1.12rem);
  line-height: 2;
}

.hero .button-row {
  margin-top: 38px;
}

.hero .button {
  min-height: 54px;
  padding-inline: 25px;
  border-radius: 999px;
}

.hero .button-primary {
  color: #132238;
  background: #fff;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.2);
}

.hero .button-primary:hover {
  color: #132238;
  background: #eef0ff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
}

.hero .button-primary span {
  margin-left: 8px;
}

.hero .button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
}

.hero .button-secondary:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

.hero-proof {
  display: flex;
  margin-top: 50px;
  gap: 0;
}

.hero-proof div {
  display: grid;
  min-width: 130px;
  padding-right: 24px;
  grid-template-columns: auto;
}

.hero-proof div + div {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-proof strong {
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
}

.hero-proof span {
  margin-top: 7px;
  color: rgba(226, 231, 243, 0.58);
  font-size: 0.72rem;
  white-space: nowrap;
}

.hero-visual {
  min-height: 490px;
  perspective: 1000px;
}

.hero-visual::before {
  width: 390px;
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: radial-gradient(circle at 36% 30%, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.025) 60%);
  box-shadow: inset 0 0 90px rgba(131, 142, 255, 0.08);
  transform: none;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(174, 183, 255, 0.2);
  border-radius: 50%;
}

.orbit-one {
  width: 440px;
  height: 330px;
  transform: rotate(28deg);
}

.orbit-two {
  width: 360px;
  height: 470px;
  transform: rotate(62deg);
}

.showcase-card {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 70px rgba(2, 8, 23, 0.35);
  backdrop-filter: blur(22px) saturate(145%);
}

.showcase-main {
  display: grid;
  width: 300px;
  padding: 24px;
  border-radius: 35px;
  justify-items: center;
  transform: rotate(3deg) translateY(-18px);
}

.showcase-main .showcase-label {
  justify-self: stretch;
  margin-bottom: 16px;
  color: #8df0ce;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.showcase-main img {
  width: 176px;
  border-radius: 25%;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.showcase-main div {
  display: grid;
  margin-top: 20px;
  justify-self: stretch;
}

.showcase-main strong {
  font-size: 1rem;
}

.showcase-main div span,
.showcase-sub div span {
  margin-top: 3px;
  color: rgba(231, 235, 246, 0.62);
  font-size: 0.72rem;
}

.showcase-sub {
  display: flex;
  right: -6px;
  bottom: 60px;
  width: 220px;
  padding: 14px;
  align-items: center;
  gap: 13px;
  border-radius: 20px;
  transform: rotate(-4deg);
}

.showcase-sub img {
  width: 58px;
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.24);
}

.showcase-sub div {
  display: grid;
}

.showcase-sub strong {
  font-size: 0.86rem;
}

.floating-note {
  position: absolute;
  z-index: 3;
  top: 76px;
  left: -22px;
  padding: 11px 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #e8ebff;
  background: rgba(17, 28, 55, 0.64);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
  font-size: 0.72rem;
  font-weight: 700;
  backdrop-filter: blur(16px);
  transform: rotate(-5deg);
}

.floating-note span {
  margin-right: 6px;
  color: #ff9a8f;
}

.hero-marquee {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  height: 48px;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 56px);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(230, 234, 245, 0.34);
  background: rgba(6, 13, 27, 0.18);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  white-space: nowrap;
}

.hero-marquee i {
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #43d3a4;
}

.section {
  padding-block: 112px;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-primary);
  font-size: 0.72rem;
  letter-spacing: 0.17em;
}

.eyebrow::before {
  width: 22px;
  height: 1px;
  background: currentColor;
  content: "";
}

.section-heading h2,
.content-section h2 {
  color: #132238;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.28;
  letter-spacing: -0.045em;
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(52px, 9vw, 120px);
}

.intro-layout .section-heading {
  margin-bottom: 0;
}

.about-copy {
  max-width: 650px;
  font-size: 1rem;
}

.about-lead {
  color: #132238;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 720;
  line-height: 1.7;
}

.text-arrow {
  display: inline-flex;
  min-height: 44px;
  margin-top: 10px;
  align-items: center;
  gap: 12px;
  color: #132238;
  border-bottom: 1px solid rgba(19, 34, 56, 0.35);
  font-weight: 750;
  text-decoration: none;
}

.text-arrow:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.section-muted {
  position: relative;
  overflow: hidden;
  color: #dfe5f2;
  border: 0;
  background: #152238;
}

.section-muted::before {
  position: absolute;
  top: -180px;
  right: -130px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(137, 151, 255, 0.18);
  border-radius: 50%;
  content: "";
}

.section-muted .section-inner {
  position: relative;
}

.section-muted .eyebrow {
  color: #8df0ce;
}

.section-muted .section-heading h2 {
  color: #fff;
}

.section-muted .section-heading p {
  color: rgba(223, 229, 242, 0.65);
}

.value-grid {
  gap: 16px;
}

.value-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 34px;
  border-color: rgba(255, 255, 255, 0.11);
  color: #fff;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.value-card:hover {
  border-color: rgba(141, 240, 206, 0.34);
  background: rgba(255, 255, 255, 0.075);
  transform: translateY(-5px);
}

.value-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  margin-bottom: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: #8df0ce;
  background: rgba(255, 255, 255, 0.05);
  font-size: 1.1rem;
}

.value-number {
  position: absolute;
  top: 34px;
  right: 30px;
  width: auto;
  height: auto;
  margin: 0;
  color: rgba(255, 255, 255, 0.28);
  background: transparent;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}

.value-card h3 {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.value-card .value-ja {
  margin-top: 2px;
  color: #ff9a8f;
  font-size: 0.84rem;
  font-weight: 700;
}

.value-card p:not(.value-ja) {
  margin-top: 18px;
  color: rgba(223, 229, 242, 0.65);
  font-size: 0.92rem;
}

#apps {
  background:
    linear-gradient(rgba(19, 34, 56, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 34, 56, 0.035) 1px, transparent 1px),
    #fbfaf7;
  background-size: 32px 32px;
}

.app-group-title {
  margin-bottom: 24px;
  font-size: 1.08rem;
}

.app-count {
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(82, 97, 243, 0.08);
  font-size: 0.74rem;
}

.app-grid {
  gap: 18px;
}

.app-card {
  min-height: 370px;
  padding: 28px;
  border-color: rgba(19, 34, 56, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 36px rgba(21, 31, 59, 0.06);
  backdrop-filter: blur(10px);
}

.app-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(90deg, #5261f3, #43d3a4, #ff6f61);
  content: "";
  opacity: 0;
  transition: opacity 0.2s ease;
}

.app-card:hover {
  border-color: rgba(82, 97, 243, 0.25);
  box-shadow: 0 22px 56px rgba(26, 39, 75, 0.13);
  transform: translateY(-7px);
}

.app-card:hover::before {
  opacity: 1;
}

.app-card h3 {
  min-height: 2.9em;
  color: #132238;
  font-size: 1.18rem;
}

.app-icon {
  border: 0;
  box-shadow: 0 9px 26px rgba(28, 41, 75, 0.15);
}

.status-live {
  color: #087f5b;
  background: #dcf8ed;
}

.status-preparing {
  color: #596273;
  background: #eef0f3;
}

.card-link {
  width: fit-content;
  margin-top: 18px;
  color: #132238;
  border-bottom: 1px solid rgba(19, 34, 56, 0.26);
}

.card-link:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.page-hero,
.app-hero {
  position: relative;
  overflow: hidden;
  padding-block: 92px 72px;
  border-bottom: 1px solid rgba(19, 34, 56, 0.08);
  background:
    radial-gradient(circle at 86% 20%, rgba(82, 97, 243, 0.18), transparent 20rem),
    linear-gradient(145deg, #f2f1ff 0%, #fbfaf7 58%);
}

.page-hero::after,
.app-hero::after {
  position: absolute;
  top: -90px;
  right: 8%;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(82, 97, 243, 0.15);
  border-radius: 50%;
  content: "";
}

.page-hero .page-shell,
.app-hero .page-shell {
  position: relative;
  z-index: 1;
}

.page-hero h1,
.app-hero h1 {
  color: #132238;
  letter-spacing: -0.045em;
}

.page-lead,
.app-summary {
  line-height: 1.9;
}

.content-section {
  padding-block: 78px 112px;
}

.content-section h2 {
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  letter-spacing: -0.035em;
}

.content-card,
.contact-panel,
.business-card {
  border-color: rgba(19, 34, 56, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 44px rgba(21, 31, 59, 0.07);
}

.content-card {
  padding: 34px;
}

.business-card {
  overflow: hidden;
  padding: 0;
}

.business-row {
  padding: 20px 28px;
}

.business-row dt {
  color: #5261f3;
}

.contact-panel {
  position: relative;
  overflow: hidden;
  padding: 34px;
}

.contact-panel::after {
  position: absolute;
  top: -50px;
  right: -30px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(67, 211, 164, 0.12);
  content: "";
}

.container {
  width: min(100% - 40px, 900px);
  padding-block: 78px 110px;
}

.container > h1 {
  color: #132238;
  font-size: clamp(2.15rem, 5vw, 3.2rem);
  letter-spacing: -0.04em;
}

.container > h2 {
  border-left-color: #5261f3;
}

.container .intro,
.container .contact {
  border-color: rgba(19, 34, 56, 0.1);
  border-radius: 18px;
  background: #f2f1ff;
}

.site-footer {
  position: relative;
  overflow: hidden;
  border-top: 0;
  color: #dce2ef;
  background: #0d1829;
}

.site-footer::before {
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(110, 126, 255, 0.16);
  border-radius: 50%;
  content: "";
}

.footer-inner {
  position: relative;
  padding-block: 70px 32px;
  gap: 54px;
}

.footer-brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  letter-spacing: -0.02em;
}

.footer-tagline,
.footer-bottom {
  color: #8390a4;
}

.footer-links a,
.footer-address a {
  color: #c7d0df;
}

@media (max-width: 1050px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 370px;
    gap: 34px;
  }

  .showcase-sub {
    right: -16px;
  }
}

@media (max-width: 900px) {
  .hero-inner {
    padding-block: 76px 105px;
    grid-template-columns: 1fr;
  }

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

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

  .showcase-sub {
    right: calc(50% - 250px);
  }

  .floating-note {
    left: calc(50% - 230px);
  }

  .intro-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 767px) {
  .header-inner {
    min-height: 68px;
  }

  .nav-toggle {
    border-color: rgba(19, 34, 56, 0.12);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
  }

  [data-js-ready] .site-nav {
    padding: 10px 16px 18px;
    border-bottom-color: rgba(19, 34, 56, 0.1);
    background: rgba(251, 250, 247, 0.97);
    box-shadow: 0 18px 40px rgba(20, 29, 54, 0.1);
  }

  [data-js-ready] .site-nav ul {
    padding: 6px;
    border-radius: 18px;
  }

  .hero-inner {
    padding-block: 64px 100px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.5rem);
  }

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

  .hero-proof div {
    min-width: 0;
    padding-right: 12px;
  }

  .hero-proof div + div {
    padding-left: 12px;
  }

  .hero-proof span {
    white-space: normal;
  }

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

  .hero-visual::before {
    width: 310px;
  }

  .orbit-one {
    width: 340px;
    height: 260px;
  }

  .orbit-two {
    width: 280px;
    height: 370px;
  }

  .showcase-main {
    width: 250px;
    padding: 20px;
  }

  .showcase-main img {
    width: 145px;
  }

  .showcase-sub {
    right: calc(50% - 190px);
    bottom: 36px;
    width: 190px;
  }

  .floating-note {
    top: 50px;
    left: calc(50% - 185px);
  }

  .hero-marquee {
    justify-content: flex-start;
    padding-left: 22px;
  }

  .section {
    padding-block: 78px;
  }

  .value-card {
    min-height: 285px;
  }

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

  .page-hero,
  .app-hero {
    padding-block: 64px 48px;
  }

  .content-section {
    padding-block: 58px 80px;
  }
}

@media (max-width: 480px) {
  .hero-proof {
    gap: 12px;
  }

  .hero-proof strong {
    font-size: 1.25rem;
  }

  .hero-proof span {
    font-size: 0.63rem;
    line-height: 1.45;
  }

  .hero-visual {
    min-height: 390px;
    transform: scale(0.92);
  }

  .showcase-sub {
    right: calc(50% - 175px);
  }

  .floating-note {
    left: calc(50% - 165px);
  }

  .section-heading h2 {
    font-size: 2rem;
  }

  .value-card,
  .app-card,
  .content-card,
  .contact-panel {
    padding: 25px;
  }
}
