:root {
  --wp-bg: #f4f8fb;
  --wp-surface: #ffffff;
  --wp-surface-soft: #eef6fb;
  --wp-text: #1c2f3d;
  --wp-muted: #5f7383;
  --wp-line: rgba(25, 73, 96, 0.12);
  --wp-primary: #1fa0c6;
  --wp-primary-deep: #146c88;
  --wp-accent: #48d4b2;
  --wp-accent-soft: rgba(72, 212, 178, 0.18);
  --wp-shadow: 0 22px 60px rgba(24, 74, 103, 0.12);
  --wp-radius-xl: 32px;
  --wp-radius-lg: 24px;
  --wp-radius-md: 18px;
  --wp-shell: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--wp-text);
  font-family: "Bahnschrift", "Trebuchet MS", "Microsoft YaHei UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(72, 212, 178, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(31, 160, 198, 0.12), transparent 24%),
    linear-gradient(180deg, #f8fcff 0%, #f3f7fb 52%, #eef5fa 100%);
}

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

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

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

.wp-shell {
  width: var(--wp-shell);
  margin: 0 auto;
}

.wp-page {
  overflow-x: clip;
}

.wp-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(248, 252, 255, 0.88);
  border-bottom: 1px solid rgba(20, 108, 136, 0.08);
}

.wp-header.is-scrolled {
  box-shadow: 0 12px 32px rgba(20, 108, 136, 0.08);
}

.wp-header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 76px;
}

.wp-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex: 0 0 auto;
  min-width: 0;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #114f65, #167a93);
  box-shadow: 0 10px 24px rgba(20, 108, 136, 0.16);
  overflow: visible;
}

.wp-brand img {
  display: block;
  flex: 0 0 auto;
  width: auto;
  height: 44px;
  max-width: 180px;
  object-fit: contain;
}

.wp-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.wp-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 700;
  color: var(--wp-muted);
}

.wp-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--wp-primary), var(--wp-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.wp-nav a:hover::after,
.wp-nav a:focus-visible::after {
  transform: scaleX(1);
}

.wp-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.wp-cta-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--wp-primary-deep), var(--wp-primary));
  box-shadow: 0 14px 30px rgba(31, 160, 198, 0.25);
}

.wp-cta-secondary,
.wp-cta-ghost {
  color: var(--wp-primary-deep);
  border-color: rgba(20, 108, 136, 0.16);
  background: rgba(255, 255, 255, 0.72);
}

.wp-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(20, 108, 136, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
}

.wp-menu-btn span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--wp-primary-deep);
  border-radius: 999px;
}

.wp-hero {
  padding: 52px 0 38px;
}

.wp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 28px;
  align-items: center;
}

.wp-hero-copy,
.wp-phone-map,
.wp-hero-sidecard,
.wp-entry-card,
.wp-route-step,
.wp-club-panel article,
.wp-mobile-card,
.wp-table-wrap,
.wp-faq-item {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(25, 73, 96, 0.08);
  box-shadow: var(--wp-shadow);
}

.wp-hero-copy {
  padding: 42px;
  border-radius: var(--wp-radius-xl);
}

.wp-eyebrow,
.wp-section-head span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--wp-primary-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.wp-eyebrow::before,
.wp-section-head span::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--wp-primary), var(--wp-accent));
}

.wp-hero h1 {
  margin: 18px 0 0;
  font-size: clamp(2.45rem, 5vw, 4.35rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.wp-hero p,
.wp-section-head p,
.wp-entry-card p,
.wp-route-step p,
.wp-club-panel p,
.wp-mobile-card p,
.wp-faq-answer p {
  margin: 18px 0 0;
  color: var(--wp-muted);
  font-size: 16px;
  line-height: 1.8;
}

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

.wp-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.wp-hero-tags li {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--wp-surface-soft);
  color: var(--wp-primary-deep);
  font-size: 13px;
  font-weight: 700;
}

.wp-hero-visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 186px;
  gap: 18px;
  align-items: stretch;
}

.wp-phone-map {
  position: relative;
  padding: 26px;
  border-radius: var(--wp-radius-xl);
  overflow: hidden;
}

.wp-phone-map::before {
  content: "";
  position: absolute;
  inset: auto auto -110px -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(72, 212, 178, 0.1);
}

.wp-phone-head span,
.wp-sidecard-copy span,
.wp-entry-badge,
.wp-route-num,
.wp-club-core small {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wp-primary-deep);
}

.wp-phone-head b,
.wp-sidecard-copy b {
  display: block;
  margin-top: 6px;
  font-size: 18px;
  line-height: 1.4;
}

.wp-phone-node {
  position: relative;
  z-index: 1;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(239, 248, 252, 0.92));
  border: 1px solid rgba(31, 160, 198, 0.12);
}

.wp-phone-node strong {
  display: block;
  margin-top: 6px;
  font-size: 21px;
}

.wp-phone-node span {
  display: block;
  margin-top: 8px;
  color: var(--wp-muted);
  font-size: 14px;
  line-height: 1.6;
}

.wp-phone-node.is-app {
  margin-top: 20px;
}

.wp-phone-lines {
  display: flex;
  justify-content: center;
  gap: 90px;
  margin: 14px 0;
}

.wp-phone-lines i {
  width: 2px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--wp-primary), var(--wp-accent));
}

.wp-phone-branches {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.wp-hero-thumb {
  margin-top: 16px;
  padding: 12px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(20, 108, 136, 0.06), rgba(72, 212, 178, 0.12));
}

.wp-hero-thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.wp-hero-sidecard {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border-radius: 28px;
  gap: 16px;
}

.wp-hero-sidecard img {
  width: 100%;
  border-radius: 20px;
  object-fit: contain;
  background: linear-gradient(180deg, rgba(20, 108, 136, 0.05), rgba(72, 212, 178, 0.12));
}

.wp-section {
  padding: 34px 0;
}

.wp-section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(239, 246, 251, 0.78));
}

.wp-section-head {
  max-width: 760px;
}

.wp-section-head h2 {
  margin: 16px 0 0;
  font-size: clamp(1.85rem, 3.4vw, 2.95rem);
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.wp-entry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.wp-entry-card {
  display: flex;
  flex-direction: column;
  padding: 22px;
  border-radius: 28px;
}

.wp-entry-top {
  display: grid;
  gap: 12px;
}

.wp-entry-top img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(20, 108, 136, 0.04), rgba(72, 212, 178, 0.14));
}

.wp-entry-card h3,
.wp-route-step h3,
.wp-club-panel h3,
.wp-mobile-card h3 {
  margin: 18px 0 0;
  font-size: 24px;
  line-height: 1.25;
}

.wp-entry-card .wp-cta {
  align-self: flex-start;
  margin-top: 20px;
}

.wp-route-map {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
  position: relative;
}

.wp-route-map::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: 58px;
  height: 2px;
  background: linear-gradient(90deg, rgba(31, 160, 198, 0.2), rgba(72, 212, 178, 0.85), rgba(31, 160, 198, 0.2));
}

.wp-route-step {
  position: relative;
  z-index: 1;
  padding: 22px 18px 20px;
  border-radius: 26px;
}

.wp-route-num {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--wp-primary-deep), var(--wp-accent));
}

.wp-club-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 22px;
  align-items: center;
  margin-top: 24px;
}

.wp-club-graph {
  position: relative;
  min-height: 500px;
  border-radius: 32px;
  padding: 30px;
  background:
    radial-gradient(circle at center, rgba(72, 212, 178, 0.18), rgba(72, 212, 178, 0.03) 28%, transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(239, 247, 251, 0.92));
  border: 1px solid rgba(25, 73, 96, 0.08);
  box-shadow: var(--wp-shadow);
  overflow: hidden;
}

.wp-club-graph::before,
.wp-club-graph::after {
  content: "";
  position: absolute;
  inset: 50%;
  width: 300px;
  height: 300px;
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(31, 160, 198, 0.15);
  border-radius: 50%;
}

.wp-club-graph::after {
  width: 420px;
  height: 420px;
}

.wp-club-core,
.wp-club-orbit {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(31, 160, 198, 0.12);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 34px rgba(24, 74, 103, 0.1);
}

.wp-club-core {
  left: 50%;
  top: 50%;
  width: min(240px, calc(100% - 48px));
  transform: translate(-50%, -50%);
  text-align: center;
  background: linear-gradient(180deg, rgba(20, 108, 136, 0.1), rgba(72, 212, 178, 0.18));
}

.wp-club-core strong {
  font-size: 34px;
}

.wp-club-core span,
.wp-club-orbit span {
  color: var(--wp-muted);
  font-size: 14px;
  line-height: 1.6;
}

.wp-club-orbit b {
  font-size: 22px;
}

.wp-orbit-room {
  left: 36px;
  top: 56px;
  width: 200px;
}

.wp-orbit-friend {
  right: 36px;
  top: 78px;
  width: 208px;
}

.wp-orbit-table {
  right: 48px;
  bottom: 72px;
  width: 216px;
}

.wp-orbit-guide {
  left: 56px;
  bottom: 56px;
  width: 196px;
}

.wp-club-panel {
  display: grid;
  gap: 14px;
}

.wp-club-panel article,
.wp-mobile-card {
  padding: 22px;
  border-radius: 24px;
}

.wp-mobile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.wp-table-wrap {
  margin-top: 24px;
  padding: 12px;
  border-radius: 28px;
  overflow-x: auto;
}

.wp-compare-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.wp-compare-table th,
.wp-compare-table td {
  padding: 18px 16px;
  border-bottom: 1px solid var(--wp-line);
  text-align: left;
  vertical-align: top;
  line-height: 1.7;
}

.wp-compare-table th {
  color: var(--wp-primary-deep);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wp-compare-table td {
  font-size: 15px;
  color: var(--wp-muted);
}

.wp-faq-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.wp-faq-item {
  border-radius: 22px;
  overflow: hidden;
}

.wp-faq-question {
  width: 100%;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  background: transparent;
  color: var(--wp-text);
  text-align: left;
  cursor: pointer;
}

.wp-faq-question span {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.5;
}

.wp-faq-question i {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.wp-faq-question i::before,
.wp-faq-question i::after {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 18px;
  height: 2px;
  background: var(--wp-primary-deep);
  border-radius: 999px;
  transition: transform 0.2s ease;
}

.wp-faq-question i::after {
  transform: rotate(90deg);
}

.wp-faq-item.is-open .wp-faq-question i::after {
  transform: rotate(0deg);
}

.wp-faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.wp-faq-answer > p {
  overflow: hidden;
  margin: 0;
  padding: 0 24px;
}

.wp-faq-item.is-open .wp-faq-answer {
  grid-template-rows: 1fr;
}

.wp-faq-item.is-open .wp-faq-answer > p {
  padding-bottom: 22px;
}

@media (max-width: 1100px) {
  .wp-hero-visual {
    grid-template-columns: 1fr;
  }

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

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

  .wp-route-map::before {
    left: 14%;
    right: 14%;
  }

  .wp-club-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .wp-header-inner {
    flex-wrap: wrap;
    min-height: 72px;
    padding: 14px 0;
  }

  .wp-menu-btn {
    display: inline-block;
    margin-left: auto;
  }

  .wp-nav {
    display: none;
    width: 100%;
    order: 10;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    margin: 8px 0 0;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(20, 108, 136, 0.08);
  }

  .wp-nav.is-open {
    display: flex;
  }

  .wp-header .wp-cta-primary {
    margin-left: auto;
  }

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

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

@media (max-width: 560px) {
  :root {
    --wp-shell: min(100% - 24px, 100%);
  }

  body {
    overflow-x: hidden;
  }

  .wp-header-inner {
    gap: 14px;
  }

  .wp-brand {
    padding: 7px 12px;
  }

  .wp-brand img {
    width: auto;
    height: 34px;
    max-width: 140px;
  }

  .wp-header .wp-cta-primary {
    width: 100%;
    order: 11;
    margin-left: 0;
  }

  .wp-hero {
    padding-top: 28px;
  }

  .wp-hero-copy,
  .wp-phone-map,
  .wp-hero-sidecard {
    padding: 22px;
    border-radius: 24px;
  }

  .wp-hero h1 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .wp-hero p,
  .wp-section-head p,
  .wp-entry-card p,
  .wp-route-step p,
  .wp-club-panel p,
  .wp-mobile-card p,
  .wp-faq-answer p {
    font-size: 15px;
    line-height: 1.75;
  }

  .wp-phone-branches,
  .wp-entry-grid,
  .wp-mobile-grid,
  .wp-route-map {
    grid-template-columns: 1fr;
  }

  .wp-phone-lines {
    gap: 0;
  }

  .wp-route-map::before {
    left: 22px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(31, 160, 198, 0.18), rgba(72, 212, 178, 0.84), rgba(31, 160, 198, 0.18));
  }

  .wp-route-step {
    padding-left: 70px;
  }

  .wp-route-num {
    position: absolute;
    left: 18px;
    top: 22px;
  }

  .wp-club-graph {
    min-height: auto;
    display: grid;
    gap: 12px;
    padding: 20px;
  }

  .wp-club-graph::before,
  .wp-club-graph::after {
    display: none;
  }

  .wp-club-core,
  .wp-club-orbit {
    position: static;
    width: 100%;
    transform: none;
  }

  .wp-club-core strong {
    font-size: 28px;
  }

  .wp-compare-table {
    min-width: 640px;
  }

  .wp-faq-question {
    padding: 20px;
  }

  .wp-faq-question span {
    font-size: 17px;
  }

  .wp-faq-answer > p {
    padding: 0 20px;
  }

  .wp-faq-item.is-open .wp-faq-answer > p {
    padding-bottom: 20px;
  }
}
