:root {
  --ft-navy: #062846;
  --ft-navy-2: #08385c;
  --ft-blue: #039fd0;
  --ft-cyan: #20d5ee;
  --ft-sky: #eaf8ff;
  --ft-text: #0a2238;
  --ft-muted: #52687c;
  --ft-line: rgba(5, 54, 88, .14);
  --ft-white: #ffffff;
  --ft-max: 1240px;
}

html, body {
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden;
  color: var(--ft-text);
  font-family: Inter, "Segoe UI", Arial, "Microsoft YaHei", "PingFang SC", "Noto Sans JP", sans-serif !important;
  background: #f6fbff;
}

body { padding-top: 0 !important; }
body.ftx-rendered > *:not(.ftx-header):not(.ftx-site):not(.ftx-footer):not(.ftx-float):not(.ftx-modal):not(script):not(style):not(link) {
  display: none !important;
}

img { max-width: 100%; }
a { color: inherit; text-decoration: none; }

.ftx-header {
  position: sticky;
  top: 0;
  z-index: 10000;
  display: grid;
  grid-template-columns: 176px minmax(0, 1fr) auto;
  align-items: center;
  min-height: 84px;
  padding: 0 clamp(20px, 4vw, 58px);
  background: linear-gradient(90deg, #063554 0%, #075f8b 55%, #06a9d5 100%);
  border-bottom: 1px solid rgba(255,255,255,.24);
  box-shadow: 0 12px 34px rgba(3, 37, 65, .14);
}

.ftx-brand {
  display: flex;
  align-items: center;
  width: 154px;
  min-height: 62px;
}

.ftx-brand img {
  width: 154px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 5px 16px rgba(0, 0, 0, .26));
}

.ftx-nav {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: clamp(10px, 1.5vw, 28px);
  min-width: 0;
}

.ftx-nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.ftx-nav-item > a {
  display: flex;
  align-items: center;
  min-height: 84px;
  padding: 0 6px;
  color: #fff;
  font-weight: 760;
  font-size: 17px;
  line-height: 1.2;
  white-space: nowrap;
  text-shadow: 0 1px 8px rgba(0,0,0,.22);
}

.ftx-nav-item > a:hover,
.ftx-nav-item > a.active { color: #d8fbff; }

.ftx-dropdown {
  position: absolute;
  top: calc(100% - 6px);
  left: 50%;
  min-width: 260px;
  padding: 12px;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  pointer-events: none;
  background: rgba(4, 39, 66, .98);
  border: 1px solid rgba(64, 216, 238, .34);
  box-shadow: 0 22px 50px rgba(0, 28, 50, .32);
  border-radius: 8px;
  transition: opacity .18s ease, transform .18s ease;
}

.ftx-nav-item:hover .ftx-dropdown,
.ftx-nav-item:focus-within .ftx-dropdown,
.ftx-nav-item.open .ftx-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.ftx-dropdown a {
  display: block;
  padding: 12px 14px;
  color: #f6fcff;
  border-bottom: 1px solid rgba(255,255,255,.12);
  font-size: 15px;
  font-weight: 680;
  line-height: 1.35;
}

.ftx-dropdown a:last-child { border-bottom: 0; }
.ftx-dropdown a:hover {
  color: #062846;
  background: linear-gradient(90deg, #72ecff, #ffffff);
  border-radius: 6px;
}

.ftx-lang {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  color: #fff;
  font-weight: 760;
  white-space: nowrap;
}

.ftx-lang a {
  padding: 8px 2px;
  color: #fff;
  opacity: .9;
}
.ftx-lang a.active { color: #c9fbff; opacity: 1; }

.ftx-menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 8px;
  background: rgba(255,255,255,.1);
}
.ftx-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.ftx-site {
  background: #f5fbff;
  min-height: 60vh;
}

.ftx-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 45%, rgba(49, 211, 237, .34), transparent 34%),
    linear-gradient(135deg, #05afd7 0%, #0787bd 38%, #063554 100%);
}

.ftx-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .8fr);
  align-items: center;
  gap: 48px;
  max-width: var(--ft-max);
  min-height: 680px;
  margin: 0 auto;
  padding: 76px 28px 92px;
}

.ftx-kicker {
  color: #c4f8ff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ftx-hero h1,
.ftx-page-hero h1 {
  margin: 16px 0 22px;
  color: #fff;
  font-size: 82px;
  line-height: 1.04;
  font-weight: 820;
  letter-spacing: 0;
  text-wrap: balance;
}

.ftx-hero p,
.ftx-page-hero p {
  margin: 0;
  max-width: 760px;
  color: rgba(255,255,255,.9);
  font-size: 24px;
  line-height: 1.55;
}

.ftx-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.ftx-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.5);
  background: rgba(3, 38, 64, .28);
  backdrop-filter: blur(10px);
  font-size: 17px;
  font-weight: 720;
}

.ftx-pill strong { color: #92f4ff; }

.ftx-globe {
  position: relative;
  min-height: 470px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 45% 40%, rgba(255,255,255,.12), transparent 18%),
    radial-gradient(circle, rgba(116,235,255,.4), rgba(8,77,113,.24) 43%, rgba(4,30,52,0) 68%);
}

.ftx-globe::before {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background-image: radial-gradient(circle, rgba(255,255,255,.75) 1.5px, transparent 2.2px);
  background-size: 18px 18px;
  mask-image: radial-gradient(circle, #000 58%, transparent 64%);
  opacity: .62;
}

.ftx-orbit {
  position: absolute;
  inset: 20% 7% 22% 9%;
  border: 2px solid rgba(166, 247, 255, .66);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(-18deg);
}
.ftx-orbit::before,
.ftx-orbit::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 5px rgba(35,221,238,.25);
}
.ftx-orbit::before { right: 16%; top: 6%; }
.ftx-orbit::after { left: 28%; bottom: 6%; }

.ftx-section {
  padding: 78px 28px;
}
.ftx-section.alt { background: #ffffff; }
.ftx-section.dark {
  background: linear-gradient(135deg, #062846, #074b75);
  color: #fff;
}
.ftx-wrap {
  max-width: var(--ft-max);
  margin: 0 auto;
}
.ftx-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
}
.ftx-section h2 {
  margin: 0;
  color: var(--ft-text);
  font-size: 48px;
  line-height: 1.12;
  letter-spacing: 0;
}
.ftx-section.dark h2,
.ftx-section.dark .ftx-lead { color: #fff; }
.ftx-lead {
  margin: 12px 0 0;
  max-width: 760px;
  color: var(--ft-muted);
  font-size: 18px;
  line-height: 1.75;
}

.ftx-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.ftx-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.ftx-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.ftx-card {
  min-height: 172px;
  padding: 28px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--ft-line);
  box-shadow: 0 18px 44px rgba(4, 42, 72, .08);
}
.ftx-card h3 {
  margin: 0 0 12px;
  color: var(--ft-text);
  font-size: 22px;
  line-height: 1.25;
}
.ftx-card p,
.ftx-card li {
  color: var(--ft-muted);
  font-size: 16px;
  line-height: 1.72;
}
.ftx-card p { margin: 0; }
.ftx-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
}
.ftx-card.feature {
  color: #fff;
  background: linear-gradient(145deg, #063d62, #079cc8);
}
.ftx-card.feature h3,
.ftx-card.feature p,
.ftx-card.feature li { color: #fff; }

.ftx-metric {
  display: grid;
  gap: 10px;
  padding: 24px;
  border-radius: 8px;
  color: #fff;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
}
.ftx-metric strong {
  color: #94f4ff;
  font-size: 38px;
  line-height: 1;
}

.ftx-logo-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.ftx-logo-tile {
  min-height: 86px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #0c4568;
  background: #edf9ff;
  border: 1px solid #cfeef7;
  font-weight: 820;
}

.ftx-page-hero {
  color: #fff;
  background: linear-gradient(135deg, #06acd4 0%, #087eb4 42%, #063554 100%);
}
.ftx-page-hero .ftx-wrap {
  min-height: 380px;
  display: grid;
  align-content: center;
  padding: 64px 28px;
}
.ftx-page-hero h1 {
  max-width: 980px;
  font-size: 72px;
}
.ftx-breadcrumb {
  margin-bottom: 14px;
  color: #c6f8ff;
  font-weight: 800;
}

.ftx-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  margin-top: 26px;
  border-radius: 8px;
  color: #063554;
  background: #fff;
  font-weight: 820;
  box-shadow: 0 16px 34px rgba(0,0,0,.12);
}
.ftx-cta.secondary {
  color: #fff;
  background: linear-gradient(90deg, #058bbf, #19c7df);
}

.ftx-process {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
}
.ftx-step {
  position: relative;
  padding: 24px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--ft-line);
}
.ftx-step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  margin-bottom: 14px;
  color: var(--ft-blue);
  font-size: 18px;
  font-weight: 860;
}

.ftx-footer {
  color: #d9f6ff;
  background: linear-gradient(135deg, #05243d, #073b5d);
}
.ftx-footer-inner {
  max-width: var(--ft-max);
  margin: 0 auto;
  padding: 34px 28px;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}
.ftx-footer-brand img { width: 160px; display: block; }
.ftx-footer-brand p { margin: 8px 0 0; color: #aeeef8; }
.ftx-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 26px;
  font-weight: 720;
}
.ftx-footer-contact {
  display: grid;
  gap: 6px;
  text-align: right;
  font-weight: 720;
}
.ftx-footer-bottom {
  padding: 14px 28px 20px;
  text-align: center;
  color: #a8cad9;
  border-top: 1px solid rgba(255,255,255,.12);
}

.ftx-float {
  position: fixed;
  right: 22px;
  top: 50%;
  z-index: 9999;
  display: grid;
  gap: 12px;
  transform: translateY(-50%);
}
.ftx-float a,
.ftx-float button {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: #08a7d1;
  box-shadow: 0 12px 24px rgba(0, 57, 91, .22);
  font-weight: 820;
  cursor: pointer;
}
.ftx-float a:nth-child(5) { background: #e84d3d; }
.ftx-float button:last-child { background: #6d62d8; font-size: 26px; }

.ftx-modal {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: grid;
  place-items: center;
  background: rgba(0, 18, 32, .62);
}
.ftx-modal[hidden] { display: none; }
.ftx-modal-panel {
  position: relative;
  width: min(360px, calc(100vw - 40px));
  padding: 30px;
  border-radius: 8px;
  background: #fff;
  text-align: center;
}
.ftx-modal-panel img {
  width: 220px;
  height: 220px;
  object-fit: contain;
}
.ftx-modal-close {
  position: absolute;
  right: 12px;
  top: 10px;
  border: 0;
  background: transparent;
  font-size: 26px;
  cursor: pointer;
}

.ft-broken-media,
.ft-template-trash,
#google_translate_element,
.skiptranslate,
.goog-te-banner-frame,
.goog-te-menu-frame,
.progress-wrap,
[class*="tawk"],
[id*="tawk"] {
  display: none !important;
}

@media (max-width: 1120px) {
  .ftx-header {
    grid-template-columns: 160px auto auto;
    min-height: 76px;
  }
  .ftx-menu-toggle { display: block; justify-self: end; }
  .ftx-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100vh - 76px);
    overflow: auto;
    padding: 8px 20px 18px;
    background: #063554;
  }
  .ftx-header.open .ftx-nav { display: flex; }
  .ftx-nav-item { display: block; }
  .ftx-nav-item > a {
    min-height: 48px;
    padding: 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }
  .ftx-dropdown {
    position: static;
    transform: none !important;
    opacity: 1;
    pointer-events: auto;
    min-width: 0;
    margin: 4px 0 10px;
    box-shadow: none;
    background: rgba(255,255,255,.08);
  }
  .ftx-lang { justify-self: end; }
  .ftx-hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .ftx-hero h1 { font-size: 64px; }
  .ftx-page-hero h1 { font-size: 58px; }
  .ftx-section h2 { font-size: 40px; }
  .ftx-globe { min-height: 360px; max-width: 560px; width: 100%; justify-self: center; }
}

@media (max-width: 820px) {
  .ftx-header {
    grid-template-columns: 128px 1fr auto;
    padding: 0 16px;
  }
  .ftx-brand,
  .ftx-brand img { width: 126px; }
  .ftx-lang {
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding: 0 0 12px;
    font-size: 14px;
  }
  .ftx-hero-inner { padding: 52px 20px 68px; gap: 26px; }
  .ftx-hero h1,
  .ftx-page-hero h1 { font-size: 40px; }
  .ftx-hero p,
  .ftx-page-hero p { font-size: 19px; line-height: 1.58; }
  .ftx-pill {
    min-height: 42px;
    padding: 0 16px;
    font-size: 15px;
  }
  .ftx-grid,
  .ftx-grid.two,
  .ftx-grid.four,
  .ftx-process,
  .ftx-logo-row {
    grid-template-columns: 1fr;
  }
  .ftx-section { padding: 58px 20px; }
  .ftx-section-head { display: block; }
  .ftx-footer-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .ftx-footer-nav { justify-content: flex-start; }
  .ftx-footer-contact { text-align: left; }
  .ftx-float {
    top: auto;
    right: auto;
    left: 50%;
    bottom: 12px;
    display: flex;
    gap: 8px;
    transform: translateX(-50%);
  }
  .ftx-float a,
  .ftx-float button {
    width: 40px;
    height: 40px;
    font-size: 12px;
  }
  .ftx-float button:first-of-type { font-size: 0; }
  .ftx-float button:first-of-type::before {
    content: "WX";
    font-size: 12px;
  }
}
