:root {
  color-scheme: dark;
  --bg: #08090d;
  --bg-soft: #10131a;
  --panel: rgba(18, 22, 30, 0.78);
  --panel-strong: rgba(22, 27, 38, 0.92);
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(255, 255, 255, 0.22);
  --text: #f7f8f5;
  --muted: #b9c0c8;
  --soft: #89929e;
  --cyan: #71f7ff;
  --gold: #f4c76a;
  --coral: #ff7f76;
  --green: #8ff0b1;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
  --header-height: 72px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: linear-gradient(180deg, #08090d 0%, #0f1118 42%, #08090d 100%);
  color: var(--text);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Noto Sans JP", system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background: linear-gradient(115deg, rgba(113, 247, 255, 0.12), transparent 32%), linear-gradient(245deg, rgba(244, 199, 106, 0.12), transparent 34%), repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 104px), repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 104px);
  pointer-events: none;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 100% 4px;
  opacity: 0.16;
  pointer-events: none;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

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

h1 {
  font-size: clamp(32px, 9vw, 76px);
  line-height: 1.05;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(24px, 6vw, 48px);
  line-height: 1.22;
  letter-spacing: 0;
}

h3 {
  font-size: clamp(18px, 4vw, 22px);
  line-height: 1.35;
  letter-spacing: 0;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  display: flex;
  width: 100%;
  height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid transparent;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    backdrop-filter 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-color: var(--line);
  background: rgba(8, 9, 13, 0.82);
  backdrop-filter: blur(18px);
}

.scroll-progress {
  --scroll-progress: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: 100%;
  height: 2px;
  pointer-events: none;
}

.scroll-progress::before {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--gold), var(--coral));
  box-shadow: 0 0 18px rgba(113, 247, 255, 0.28);
  content: "";
  transform: scaleX(var(--scroll-progress));
  transform-origin: left center;
}

.brand {
  position: relative;
  z-index: 45;
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: clamp(136px, 16vw, 184px);
  max-height: 44px;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(135deg, rgba(113, 247, 255, 0.22), rgba(244, 199, 106, 0.15)), rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-weight: 800;
  line-height: 1;
}

.brand-copy {
  display: grid;
  min-width: 0;
  gap: 1px;
  font-weight: 700;
  line-height: 1.25;
}

.brand-copy span:first-child {
  font-size: 14px;
}

.brand-copy span:last-child {
  color: var(--soft);
  font-size: 13px;
  font-weight: 600;
}

.nav-toggle {
  position: relative;
  z-index: 45;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 18px;
  height: 1px;
  grid-area: 1 / 1;
  background: currentColor;
  content: "";
  transition:
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.nav-toggle::before {
  box-shadow: 0 6px 0 currentColor;
  transform: translateY(-6px);
}

.nav-toggle::after {
  transform: translateY(6px);
}

.nav-toggle.is-active::before {
  box-shadow: 0 0 0 currentColor;
  transform: rotate(42deg);
}

.nav-toggle.is-active::after {
  transform: rotate(-42deg);
}

.site-nav {
  position: fixed;
  top: var(--header-height);
  right: 20px;
  left: 20px;
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(10, 12, 18, 0.95);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(-10px);
  visibility: hidden;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s ease;
}

.site-nav.is-open {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.site-nav a {
  padding: 12px 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  transform: translateX(2px);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 92svh;
  overflow: hidden;
  padding: calc(var(--header-height) + 42px) 0 28px;
  background: linear-gradient(180deg, rgba(8, 9, 13, 0.22) 0%, rgba(8, 9, 13, 0.8) 74%, var(--bg) 100%), linear-gradient(125deg, rgba(113, 247, 255, 0.16), transparent 36%), linear-gradient(310deg, rgba(244, 199, 106, 0.12), transparent 40%);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(90deg, rgba(8, 9, 13, 0.96) 0%, rgba(8, 9, 13, 0.74) 46%, rgba(8, 9, 13, 0.38) 100%), linear-gradient(180deg, transparent 0%, rgba(8, 9, 13, 0.72) 100%);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(rgba(255, 255, 255, 0.075) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.075) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 72%, transparent 100%);
  opacity: 0.17;
}

.hero-inner {
  display: grid;
  width: min(100% - 40px, var(--container));
  min-height: calc(92svh - var(--header-height) - 98px);
  margin-inline: auto;
  align-items: center;
  gap: 24px;
}

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

.eyebrow {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(95deg, var(--cyan), #ffffff 48%, var(--gold));
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-lead {
  max-width: 660px;
  margin-top: 22px;
  color: #d9dee5;
  font-size: clamp(15px, 3.8vw, 18px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 12px 18px;
  border: 1px solid transparent;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  transition:
    border-color 0.22s ease,
    background-color 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease;
}

.button::after {
  width: 18px;
  height: 1px;
  margin-left: 12px;
  background: currentColor;
  content: "";
  transition: transform 0.22s ease;
}

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

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(4px);
}

.button-primary {
  border-color: rgba(113, 247, 255, 0.62);
  background: linear-gradient(110deg, rgba(113, 247, 255, 0.24), rgba(244, 199, 106, 0.16)), rgba(255, 255, 255, 0.07);
  box-shadow: 0 14px 44px rgba(113, 247, 255, 0.12);
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.055);
  color: #e7ebef;
}

.hero-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 720px;
  gap: 1px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-panel div {
  display: grid;
  gap: 4px;
  min-height: 96px;
  align-content: center;
  padding: 14px 10px;
  background: rgba(9, 11, 16, 0.76);
}

.panel-value {
  font-size: 15px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.panel-label {
  color: var(--soft);
  font-size: 13px;
  font-weight: 700;
}

.hero-status {
  display: none;
  width: min(100% - 40px, var(--container));
  margin: 8px auto 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.hero-status span {
  min-width: 0;
  padding: 12px 10px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.section {
  padding: 86px 0;
}

.section-reveal {
  --section-progress: 1;
  --section-glow: 1;
  --section-shift: 0;
  position: relative;
}

.section-reveal::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), rgba(244, 199, 106, 0.58), transparent);
  content: "";
  opacity: calc(0.2 + (var(--section-progress) * 0.45));
  pointer-events: none;
  transform: scaleX(var(--section-progress));
  transform-origin: left center;
}

.intro-band,
.news,
.about,
.service,
.safety,
.operations,
.company,
.faq,
.message,
.page-hero,
.policy-section {
  position: relative;
  overflow: hidden;
}

.intro-band::before,
.news::before,
.about::before,
.service::before,
.safety::before,
.operations::before,
.company::before,
.faq::before,
.message::before,
.page-hero::before,
.policy-section::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(110deg, transparent 4%, rgba(113, 247, 255, 0.075) 42%, rgba(244, 199, 106, 0.055) 50%, transparent 62%), repeating-linear-gradient(115deg, transparent 0 72px, rgba(255, 255, 255, 0.032) 72px 73px, transparent 73px 148px);
  content: "";
  opacity: calc(var(--section-glow) * 0.88);
  pointer-events: none;
  transform: translate3d(calc(var(--section-shift) * 1%), 0, 0);
  transition: opacity 0.2s ease;
}

.intro-band > .container,
.news > .container,
.about > .container,
.service > .container,
.safety > .container,
.operations > .container,
.company > .container,
.faq > .container,
.message > .container,
.page-hero > .container,
.policy-section > .container {
  position: relative;
  z-index: 1;
}

.intro-band {
  position: relative;
  overflow: hidden;
  padding: 64px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(100deg, rgba(244, 199, 106, 0.12), transparent 42%), linear-gradient(260deg, rgba(113, 247, 255, 0.13), transparent 46%), rgba(14, 17, 23, 0.82);
}

.intro-band-inner p {
  margin-bottom: 8px;
  color: var(--soft);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.marquee {
  margin-top: 42px;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 34s linear infinite;
}

.marquee-track span {
  flex: 0 0 auto;
  padding: 16px 18px;
  border-right: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.38);
  font-size: clamp(18px, 6vw, 44px);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

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

.split-layout,
.company-layout {
  display: grid;
  gap: 28px;
}

.section-heading {
  max-width: 660px;
}

.section-body {
  max-width: 640px;
  color: var(--muted);
  font-size: 15px;
}

.news {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(113, 247, 255, 0.045), rgba(255, 255, 255, 0.01)),
    rgba(8, 10, 14, 0.92);
}

.news-panel {
  display: grid;
  gap: 14px;
  margin-top: 38px;
}

.news-status {
  padding: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.news-list {
  display: grid;
  gap: 12px;
}

.news-card {
  position: relative;
  display: grid;
  min-width: 0;
  gap: 10px;
  overflow: hidden;
  padding: 22px 20px;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(113, 247, 255, 0.075), rgba(244, 199, 106, 0.045)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
  transition: border-color 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.news-card::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--cyan), var(--gold));
  content: "";
  opacity: 0.74;
}

.news-card time {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.3;
}

.news-card h3 {
  font-size: clamp(18px, 4vw, 22px);
}

.news-card p {
  color: var(--muted);
  font-size: 14px;
}

.news-card:hover,
.news-card:focus-visible {
  border-color: rgba(113, 247, 255, 0.4);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.24), 0 0 34px rgba(113, 247, 255, 0.08);
  transform: translateY(-3px);
}

.feature-grid {
  display: grid;
  gap: 16px;
  margin-top: 38px;
}

.feature-card {
  --card-line: 1;
  --card-shine: 120%;
  position: relative;
  min-height: 230px;
  overflow: hidden;
  padding: 24px 22px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035)), var(--panel);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.2);
  transform-style: preserve-3d;
  transition:
    border-color 0.22s ease,
    transform 0.22s ease,
    background-color 0.22s ease;
}

.feature-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--gold), var(--coral));
  content: "";
  opacity: 0.8;
  transform: scaleX(var(--card-line));
  transform-origin: left center;
}

.feature-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.12) 45%, transparent 58%);
  content: "";
  opacity: 0.62;
  pointer-events: none;
  transform: translateX(var(--card-shine));
}

.feature-card:hover,
.feature-card:focus-within {
  border-color: rgba(113, 247, 255, 0.42);
  transform: translateY(-4px);
}

.card-number {
  display: inline-flex;
  margin-bottom: 46px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
}

.feature-card h3,
.service-item h3 {
  margin-bottom: 12px;
}

.feature-card p,
.service-item p,
.service-main p,
.vision p,
.trust-card p,
.faq-item p,
.policy-card p,
.note-panel p {
  color: var(--muted);
}

.service {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)), rgba(10, 12, 18, 0.88);
}

.service-shell {
  display: grid;
  gap: 34px;
}

.service-main {
  display: grid;
  gap: 20px;
  align-content: start;
}

.service-main .button {
  justify-self: start;
  margin-top: 8px;
}

.service-list {
  display: grid;
  gap: 12px;
}

.service-launch {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 340px;
  gap: 22px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(128deg, rgba(113, 247, 255, 0.18) 0%, transparent 33%), linear-gradient(305deg, rgba(244, 199, 106, 0.18) 0%, transparent 38%), linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)), #0d1016;
  box-shadow: 0 26px 78px rgba(0, 0, 0, 0.3);
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.service-launch::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.16) 48%, transparent 56%), repeating-linear-gradient(115deg, transparent 0 46px, rgba(255, 255, 255, 0.055) 46px 47px, transparent 47px 92px);
  content: "";
  opacity: 0.5;
  pointer-events: none;
  transform: translateX(-64%);
  transition: transform 0.62s ease;
}

.service-launch::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--gold), var(--coral));
  content: "";
  opacity: 0.82;
  pointer-events: none;
  transform: scaleX(0.42);
  transform-origin: left center;
  transition: transform 0.28s ease;
}

.service-launch:hover,
.service-launch:focus-visible {
  border-color: rgba(113, 247, 255, 0.48);
  box-shadow:
    0 32px 92px rgba(0, 0, 0, 0.38),
    0 0 54px rgba(244, 199, 106, 0.12);
  transform: translateY(-3px);
}

.service-launch:hover::before,
.service-launch:focus-visible::before {
  transform: translateX(42%);
}

.service-launch:hover::after,
.service-launch:focus-visible::after {
  transform: scaleX(1);
}

.launch-media {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 158px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)), rgba(8, 9, 13, 0.58);
}

.launch-media::before {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  content: "";
  pointer-events: none;
}

.launch-logo-wrap {
  display: grid;
  width: min(100%, 390px);
  min-height: 112px;
  place-items: center;
  padding: 16px;
}

.launch-logo {
  width: min(100%, 310px);
  height: auto;
  filter: drop-shadow(0 18px 38px rgba(0, 0, 0, 0.32));
}

.launch-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  align-content: start;
}

.launch-kicker {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.launch-copy strong {
  color: var(--text);
  font-size: 30px;
  font-weight: 900;
  line-height: 1.12;
}

.launch-copy > span:last-child {
  color: #d9dee5;
  font-size: 15px;
}

.launch-action {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 0;
  gap: 12px;
  align-content: end;
}

.launch-url {
  min-width: 0;
  color: transparent;
  background: linear-gradient(94deg, #ffffff, var(--cyan) 45%, var(--gold));
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.08;
  overflow-wrap: anywhere;
  transition: transform 0.22s ease;
}

.launch-button {
  display: inline-flex;
  width: fit-content;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border: 1px solid rgba(113, 247, 255, 0.54);
  background: linear-gradient(110deg, rgba(113, 247, 255, 0.2), rgba(244, 199, 106, 0.13)), rgba(255, 255, 255, 0.07);
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.3;
}

.launch-button::after {
  width: 18px;
  height: 1px;
  margin-left: 10px;
  background: currentColor;
  content: "";
  transition: transform 0.22s ease;
}

.service-launch:hover .launch-url,
.service-launch:focus-visible .launch-url {
  transform: translateX(4px);
}

.service-launch:hover .launch-button::after,
.service-launch:focus-visible .launch-button::after {
  transform: translateX(4px);
}

.service-item {
  --item-line: 1;
  position: relative;
  overflow: hidden;
  padding: 22px 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  transition:
    border-color 0.22s ease,
    background-color 0.22s ease,
    transform 0.22s ease;
}

.service-item::before {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--green), var(--cyan));
  content: "";
  opacity: 0.72;
  transform: scaleY(var(--item-line));
  transform-origin: top center;
}

.service-item:hover,
.service-item:focus-within {
  border-color: rgba(244, 199, 106, 0.38);
  background: rgba(255, 255, 255, 0.07);
  transform: translateX(3px);
}

.service-item span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.safety {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)), rgba(8, 10, 14, 0.94);
}

.trust-grid {
  display: grid;
  gap: 12px;
  margin-top: 42px;
}

.trust-card {
  position: relative;
  min-height: 198px;
  overflow: hidden;
  padding: 22px 20px;
  border: 1px solid var(--line);
  background: linear-gradient(150deg, rgba(113, 247, 255, 0.08), rgba(244, 199, 106, 0.045)), rgba(255, 255, 255, 0.04);
  transition:
    border-color 0.22s ease,
    background-color 0.22s ease,
    transform 0.22s ease;
}

.trust-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--gold));
  content: "";
  opacity: 0.76;
}

.trust-card:hover,
.trust-card:focus-within {
  border-color: rgba(113, 247, 255, 0.38);
  background: rgba(255, 255, 255, 0.065);
  transform: translateY(-3px);
}

.trust-card span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
}

.trust-card h3 {
  margin-bottom: 12px;
}

.legal-links {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.legal-links a {
  position: relative;
  display: inline-flex;
  min-width: 0;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  overflow: hidden;
  padding: 15px 16px 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(110deg, rgba(113, 247, 255, 0.11), rgba(244, 199, 106, 0.06)), rgba(9, 11, 16, 0.82);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  color: #e7ebef;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
  transition:
    border-color 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease;
}

.legal-links a::after {
  flex: 0 0 auto;
  width: 18px;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.86;
  transition:
    transform 0.22s ease,
    width 0.22s ease;
}

.legal-links a:hover,
.legal-links a:focus-visible {
  border-color: rgba(113, 247, 255, 0.46);
  background: linear-gradient(110deg, rgba(113, 247, 255, 0.17), rgba(244, 199, 106, 0.11)), rgba(255, 255, 255, 0.065);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.24),
    0 0 28px rgba(113, 247, 255, 0.08);
  color: var(--text);
  transform: translateY(-2px);
}

.legal-links a:hover::after,
.legal-links a:focus-visible::after {
  width: 24px;
  transform: translateX(4px);
}

.operations {
  border-top: 1px solid var(--line);
}

.operation-list,
.faq-list {
  display: grid;
  gap: 12px;
}

.faq {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)), rgba(10, 12, 18, 0.9);
}

.faq-item {
  position: relative;
  padding: 22px 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
}

.faq-item::before {
  position: absolute;
  top: 22px;
  left: 0;
  width: 3px;
  height: 28px;
  background: linear-gradient(180deg, var(--gold), var(--coral));
  content: "";
}

.faq-item h3 {
  margin-bottom: 10px;
  font-size: clamp(17px, 3.8vw, 20px);
}

.vision {
  position: relative;
  overflow: hidden;
  padding: 108px 0;
}

.vision::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(113, 247, 255, 0.54), transparent);
  content: "";
  opacity: 0.7;
}

.vision::after {
  position: absolute;
  inset: 18% 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 199, 106, 0.55), rgba(113, 247, 255, 0.45), transparent);
  content: "";
  opacity: calc(var(--section-progress) * 0.72);
  transform: scaleX(var(--section-progress));
  transform-origin: center;
}

.vision-inner {
  position: relative;
  display: grid;
  max-width: 900px;
  gap: 22px;
}

.vision h2 {
  max-width: 820px;
}

.vision p:last-child {
  max-width: 690px;
  font-size: 15px;
}

.profile-card {
  border: 1px solid var(--line);
  background: var(--panel-strong);
  box-shadow: var(--shadow);
}

.profile-list {
  margin: 0;
}

.profile-list dt {
  padding: 19px 20px 0;
  color: var(--soft);
  font-size: 13px;
  font-weight: 800;
}

.profile-list dd {
  margin: 0;
  padding: 6px 20px 19px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
}

.profile-list dd:last-of-type {
  border-bottom: 0;
}

.profile-list a {
  color: var(--cyan);
}

.message {
  padding: 86px 0;
  border-top: 1px solid var(--line);
  background: linear-gradient(120deg, rgba(113, 247, 255, 0.13), transparent 40%), linear-gradient(255deg, rgba(255, 127, 118, 0.1), transparent 42%), #0f1118;
}

.message-inner {
  display: grid;
  max-width: 980px;
  gap: 20px;
}

.message h2 {
  font-size: clamp(24px, 6vw, 42px);
}

.message p {
  max-width: 760px;
  color: var(--muted);
  font-size: 15px;
}

.subpage .site-header {
  border-color: var(--line);
  background: rgba(8, 9, 13, 0.82);
  backdrop-filter: blur(18px);
}

.page-hero {
  min-height: 56svh;
  padding: calc(var(--header-height) + 64px) 0 68px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(8, 9, 13, 0.48) 0%, rgba(8, 9, 13, 0.92) 100%), linear-gradient(125deg, rgba(113, 247, 255, 0.14), transparent 38%), linear-gradient(300deg, rgba(244, 199, 106, 0.12), transparent 42%);
}

.page-hero-inner {
  display: grid;
  gap: 22px;
  max-width: 900px;
}

.page-kicker {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.page-hero h1 {
  font-size: clamp(34px, 8vw, 70px);
}

.page-lead {
  max-width: 760px;
  color: #d9dee5;
  font-size: clamp(15px, 3.8vw, 18px);
}

.page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--soft);
  font-size: 13px;
  font-weight: 800;
}

.page-meta span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
}

.policy-section {
  padding: 76px 0;
}

.policy-layout {
  display: grid;
  gap: 16px;
}

.policy-layout-main {
  display: grid;
  gap: 16px;
}

.policy-card,
.note-panel {
  border: 1px solid var(--line);
  background: var(--panel-strong);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.18);
}

.policy-card {
  padding: 24px 20px;
}

.policy-card h2 {
  margin-bottom: 14px;
  font-size: clamp(22px, 5vw, 34px);
}

.policy-card h3 {
  margin: 22px 0 10px;
  font-size: clamp(17px, 3.8vw, 21px);
}

.policy-card p + p {
  margin-top: 10px;
}

.policy-card a,
.legal-table a {
  color: var(--cyan);
}

.legal-document .policy-card h2 {
  font-size: clamp(19px, 4vw, 28px);
}

.legal-document .policy-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
  overflow-wrap: anywhere;
}

.legal-document .document-intro p {
  color: #d9dee5;
  font-size: 15px;
}

.policy-list,
.compact-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.policy-list li,
.compact-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.policy-list li::before,
.compact-list li::before {
  position: absolute;
  top: 0.73em;
  left: 0;
  width: 7px;
  height: 1px;
  background: var(--cyan);
  content: "";
}

.legal-table {
  display: grid;
  margin: 0;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.legal-table dt,
.legal-table dd {
  margin: 0;
  background: rgba(9, 11, 16, 0.78);
}

.legal-table dt {
  padding: 16px 18px 4px;
  color: var(--soft);
  font-size: 13px;
  font-weight: 900;
}

.legal-table dd {
  padding: 4px 18px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
}

.legal-table dd:last-of-type {
  border-bottom: 0;
}

.note-panel {
  padding: 20px;
}

.note-panel h2,
.note-panel h3 {
  margin-bottom: 10px;
  font-size: clamp(19px, 4vw, 24px);
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.site-footer {
  padding: 28px 0;
  background: #07080b;
}

.footer-inner {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.footer-inner a {
  color: var(--gold);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.reveal {
  opacity: 1;
}

@media (min-width: 560px) {
  .hero-panel div {
    min-height: 116px;
    padding: 18px 20px;
  }

  .panel-value {
    font-size: 18px;
  }

  .hero-status {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

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

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

@media (min-width: 860px) {
  :root {
    --header-height: 82px;
  }

  .site-header {
    padding-inline: 34px;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    gap: 2px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    transform: none;
    visibility: visible;
  }

  .site-nav a {
    padding: 10px 13px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    transform: translateY(-1px);
  }

  .hero {
    padding-top: calc(var(--header-height) + 54px);
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    min-height: calc(100svh - var(--header-height) - 120px);
  }

  .hero-content {
    padding-top: 24px;
  }

  .hero-panel {
    width: min(100%, 760px);
  }

  .section {
    padding: 118px 0;
  }

  .split-layout,
  .company-layout {
    grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
    gap: 56px;
    align-items: start;
  }

  .section-body {
    padding-top: 45px;
  }

  .feature-grid {
    margin-top: 56px;
  }

  .news-panel {
    margin-top: 56px;
  }

  .service-shell {
    grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.9fr);
    gap: 58px;
    align-items: start;
  }

  .service-launch {
    grid-column: 1 / -1;
    grid-template-columns: minmax(320px, 0.84fr) minmax(0, 1fr) minmax(230px, 0.52fr);
    min-height: 318px;
    padding: 30px;
    align-items: stretch;
  }

  .launch-media {
    min-height: 100%;
  }

  .launch-logo-wrap {
    width: min(100%, 430px);
    min-height: 180px;
  }

  .launch-logo {
    width: min(100%, 360px);
  }

  .launch-copy {
    align-content: center;
  }

  .launch-copy strong {
    font-size: 44px;
  }

  .launch-action {
    justify-items: end;
    align-content: end;
  }

  .launch-url {
    font-size: 26px;
    text-align: right;
  }

  .service-list {
    gap: 14px;
  }

  .trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 56px;
  }

  .legal-links {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 22px;
  }

  .vision {
    padding: 140px 0;
  }

  .operation-list,
  .faq-list {
    gap: 14px;
  }

  .profile-list {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .profile-list dt {
    padding: 22px 0 22px 26px;
    border-bottom: 1px solid var(--line);
  }

  .profile-list dd {
    padding: 22px 26px;
  }

  .profile-list dt:last-of-type {
    border-bottom: 0;
  }

  .page-hero {
    padding: calc(var(--header-height) + 86px) 0 92px;
  }

  .policy-section {
    padding: 102px 0;
  }

  .policy-layout {
    grid-template-columns: minmax(250px, 0.78fr) minmax(0, 1.22fr);
    gap: 28px;
    align-items: start;
  }

  .policy-card {
    padding: 30px 28px;
  }

  .legal-table {
    grid-template-columns: 200px minmax(0, 1fr);
  }

  .legal-table dt {
    padding: 20px 0 20px 22px;
    border-bottom: 1px solid var(--line);
  }

  .legal-table dd {
    padding: 20px 24px;
  }

  .legal-table dt:last-of-type {
    border-bottom: 0;
  }

  .footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
}

@media (min-width: 1200px) {
  .site-header {
    padding-inline: 42px;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(8, 9, 13, 0.96) 0%, rgba(8, 9, 13, 0.68) 44%, rgba(8, 9, 13, 0.16) 100%), linear-gradient(180deg, transparent 0%, rgba(8, 9, 13, 0.68) 100%);
  }

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

@media (max-width: 420px) {
  .container,
  .hero-inner,
  .hero-status {
    width: min(100% - 28px, var(--container));
  }

  .site-header {
    padding-inline: 14px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-copy span:first-child {
    font-size: 13px;
  }

  .brand-copy span:last-child {
    font-size: 13px;
  }

  .site-nav {
    right: 14px;
    left: 14px;
  }

  .button {
    width: 100%;
  }

  .service-launch {
    min-height: 0;
    padding: 18px;
  }

  .launch-media {
    min-height: 132px;
  }

  .launch-logo-wrap {
    min-height: 96px;
    padding: 12px;
  }

  .launch-logo {
    width: min(100%, 250px);
  }

  .launch-copy strong {
    font-size: 26px;
  }

  .launch-url {
    font-size: 20px;
  }

  .launch-button {
    width: 100%;
  }

  .page-actions .button {
    width: 100%;
  }

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

  .footer-inner {
    gap: 14px;
  }
}

@media (max-width: 767px), (hover: none) {
  .site-nav a,
  .site-nav,
  .nav-toggle,
  .nav-toggle::before,
  .nav-toggle::after,
  .button,
  .feature-card,
  .news-card,
  .service-launch,
  .service-item,
  .trust-card,
  .legal-links a,
  .faq-item,
  .launch-url,
  .launch-button::after {
    transition: none;
  }

  .site-nav a:hover {
    background: transparent;
    color: var(--muted);
    transform: none;
  }

  .button:hover,
  .feature-card:hover,
  .news-card:hover,
  .service-launch:hover,
  .service-item:hover,
  .trust-card:hover,
  .legal-links a:hover,
  .faq-item:hover {
    transform: none;
  }

  .button:hover::after,
  .service-launch:hover .launch-url,
  .service-launch:hover .launch-button::after,
  .legal-links a:hover::after {
    transform: none;
  }

  .feature-card:hover {
    border-color: var(--line);
  }

  .news-card:hover {
    border-color: var(--line);
    background:
      linear-gradient(145deg, rgba(113, 247, 255, 0.075), rgba(244, 199, 106, 0.045)),
      rgba(255, 255, 255, 0.04);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
  }

  .service-launch:hover {
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 26px 78px rgba(0, 0, 0, 0.3);
  }

  .service-launch:hover::before {
    transform: translateX(-64%);
  }

  .service-launch:hover::after {
    transform: scaleX(0.42);
  }

  .service-item:hover {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.045);
  }

  .trust-card:hover {
    border-color: var(--line);
    background:
      linear-gradient(150deg, rgba(113, 247, 255, 0.08), rgba(244, 199, 106, 0.045)),
      rgba(255, 255, 255, 0.04);
  }

  .legal-links a:hover {
    border-color: rgba(255, 255, 255, 0.16);
    background:
      linear-gradient(110deg, rgba(113, 247, 255, 0.11), rgba(244, 199, 106, 0.06)),
      rgba(9, 11, 16, 0.82);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
    color: #e7ebef;
  }

  .legal-links a:hover::after {
    width: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .scroll-progress::before,
  .section-reveal::after,
  .feature-card::before,
  .service-item::before {
    transform: none !important;
  }

  .feature-card::after,
  .intro-band::before,
  .news::before,
  .about::before,
  .service::before,
  .safety::before,
  .operations::before,
  .company::before,
  .faq::before,
  .message::before,
  .page-hero::before,
  .policy-section::before {
    display: none;
  }
}
