/* Ganymede Boston · 新客户资料中心
   调色板对齐 ganymedebos.com：
   #011624 深墨蓝主 · #5230DA 品牌紫 · #D05B2E 橙点缀 · #F7F8F8 中性底
   Poppins 标题 · 极简 corporate 风 */

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family: 'DM Sans','Inter',-apple-system,BlinkMacSystemFont,'Segoe UI','PingFang SC','Microsoft YaHei','Noto Sans SC',sans-serif;
  color: #011624;
  background: #F7F8F8;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
h1,h2,h3,h4 { font-family:'Poppins','Inter',sans-serif; letter-spacing:-0.02em; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

:root {
  --navy:        #011624;
  --navy-2:      #000B14;
  --navy-3:      #1F324B;
  --navy-tint:   #E6E8EB;

  --purple:      #5230DA;
  --purple-2:    #4020BB;
  --purple-tint: #EDE9FF;
  --purple-glow: rgba(82,48,218,.14);

  --orange:      #D05B2E;
  --orange-2:    #B04A22;
  --orange-tint: #FBEADE;

  --ink:         #011624;
  --ink-2:       #384957;
  --ink-3:       #6B7580;
  --ink-4:       #9AA2AB;

  --paper:       #F7F8F8;
  --paper-2:     #EEEFF0;
  --white:       #FFFFFF;

  --line:        #E6E8E9;
  --line-2:      #EFF0F1;

  --green:       #16A34A;
  --green-tint:  #DCFCE7;
  --gray-tint:   #F1F5F9;
}

/* ── Topbar ─────────────────────────────────────── */
.topbar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
}
.topbar-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 16px 24px;
  display: flex; align-items: center; gap: 20px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 32px; height: 32px;
  background: var(--navy);
  border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  position: relative;
}
.brand-mark::before {
  content: 'G';
  font-family:'Poppins',sans-serif;
  font-weight: 800; font-size: 17px;
  color: var(--white);
  position: relative; z-index: 1;
}
.brand-mark::after {
  content: ''; position: absolute;
  bottom: 4px; right: 4px;
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 1px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text .b1 { font-family:'Poppins',sans-serif; font-size: 15px; font-weight: 800; color: var(--navy); letter-spacing: -.005em; }
.brand-text .b2 { font-family:'Poppins',sans-serif; font-size: 9.5px; color: var(--ink-3); letter-spacing: .32em; margin-top: 3px; font-weight: 600; }

.topbar-right { margin-left: auto; display: flex; align-items: center; gap: 18px; }
.lang-switch {
  display: inline-flex; align-items: center;
  gap: 2px;
}
.lang-btn {
  padding: 5px 10px; border: none;
  font-size: 11.5px; font-weight: 700; cursor: pointer;
  background: transparent; color: var(--ink-3);
  font-family: 'Poppins',sans-serif; letter-spacing: .04em;
  transition: all .15s;
  border-radius: 4px;
}
.lang-btn.active { color: var(--navy); background: var(--paper); }
.tb-link {
  font-size: 13px; color: var(--ink-2);
  display: inline-flex; align-items: center; gap: 5px;
  transition: color .15s;
}
.tb-link:hover { color: var(--purple); }
.tb-link svg { width: 12px; height: 12px; }
.btn-login {
  background: var(--navy); color: var(--white);
  padding: 10px 20px; border-radius: 4px;
  font-weight: 600; font-size: 12.5px;
  font-family: 'Poppins',sans-serif;
  letter-spacing: .01em;
  transition: all .18s;
}
.btn-login:hover { background: var(--purple); }

/* ── Hero (dark navy, editorial) ─────────────────── */
.page-head {
  position: relative;
  background: var(--navy);
  color: var(--white);
  padding: 100px 24px 88px;
  overflow: hidden;
}
.page-head::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(700px circle at 15% 20%, rgba(82,48,218,.22), transparent 60%),
    radial-gradient(500px circle at 90% 90%, rgba(208,91,46,.14), transparent 60%);
  pointer-events: none;
}
/* subtle grid pattern */
.page-head::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  pointer-events: none;
}
.page-head-inner {
  position: relative; z-index: 1;
  max-width: 1120px; margin: 0 auto; text-align: center;
}
.page-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700;
  color: var(--orange); letter-spacing: .28em;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-family: 'Poppins',sans-serif;
}
.page-eyebrow::before, .page-eyebrow::after {
  content: ''; width: 24px; height: 1px; background: rgba(208,91,46,.5);
}
.page-head h1 {
  font-family: 'Poppins',sans-serif;
  font-size: clamp(36px, 5.4vw, 56px);
  font-weight: 700; letter-spacing: -0.035em;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.06;
}
.page-head h1 .accent {
  color: var(--white);
  font-weight: 800;
  position: relative;
  display: inline-block;
  padding: 0 4px;
}
.page-head h1 .accent::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 4px;
  height: 4px;
  background: var(--purple);
}
.page-head p {
  font-size: 16px; color: rgba(255,255,255,.72);
  max-width: 640px; margin: 0 auto 32px;
  line-height: 1.65;
}
.head-linkrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600;
  color: var(--white);
  padding: 12px 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 4px;
  backdrop-filter: blur(8px);
  transition: all .2s;
}
.head-linkrow:hover {
  background: var(--purple);
  border-color: var(--purple);
}
.head-linkrow svg { width: 13px; height: 13px; }

/* ── Page wrapper ─────────────────────────────── */
.page {
  min-height: 100vh;
  padding-top: 40px;
  padding-bottom: 60px;
}

/* ── Floating language toggle (top-right) ─────── */
.floating-lang {
  position: fixed;
  top: 20px; right: 24px;
  z-index: 60;
  display: inline-flex; align-items: center;
  padding: 3px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(1,22,36,.08);
}
.floating-lang .lang-btn {
  padding: 5px 12px;
  border: none;
  border-radius: 999px;
  font-size: 11.5px; font-weight: 700; cursor: pointer;
  background: transparent; color: var(--ink-3);
  font-family: 'Poppins',sans-serif; letter-spacing: .04em;
  transition: all .15s;
}
.floating-lang .lang-btn.active { background: var(--navy); color: var(--white); }

/* ── Progress strip ─────────────────────────────── */
.progress-strip {
  max-width: 1120px; margin: 0 auto;
  padding: 0 24px;
  position: relative; z-index: 2;
}
.progress-strip-inner {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 14px 22px;
  display: flex; align-items: center;
  gap: 10px;
  box-shadow: 0 20px 40px -20px rgba(1,22,36,.25), 0 2px 6px rgba(1,22,36,.05);
  overflow-x: auto;
  scrollbar-width: none;
}
.progress-strip-inner::-webkit-scrollbar { display: none; }
.ps-step {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700;
  color: var(--ink-3);
  font-family: 'Poppins',sans-serif;
  white-space: nowrap;
}
.ps-step-num {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink-3);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10.5px; font-weight: 800;
  border: 1.5px solid var(--line);
}
.ps-step-label { font-size: 12.5px; letter-spacing: .01em; }
.ps-step.ready .ps-step-num {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}
.ps-step.ready .ps-step-label { color: var(--navy); }
.ps-arrow {
  color: var(--ink-4);
  font-size: 11px;
  flex-shrink: 0;
}

/* ── Resource cards ─────────────────────────────── */
.resources {
  padding: 32px 24px 40px;
}
.resources-inner {
  max-width: 1120px; margin: 0 auto;
}
.res-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.res-card {
  position: relative;
  padding: 30px 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: all .22s ease;
  display: flex; align-items: flex-start; gap: 22px;
  overflow: hidden;
}
/* watermark number */
.res-card::before {
  content: attr(data-num);
  position: absolute;
  top: -18px; right: -4px;
  font-family: 'Poppins',sans-serif;
  font-size: 130px; font-weight: 800;
  color: var(--paper);
  letter-spacing: -.06em;
  line-height: 1;
  pointer-events: none;
  transition: transform .25s;
  z-index: 0;
}
.res-card > * { position: relative; z-index: 1; }
.res-card:hover {
  transform: translateY(-3px);
  border-color: var(--ink-4);
  box-shadow: 0 22px 40px -18px rgba(1,22,36,.18), 0 2px 8px rgba(1,22,36,.04);
}

/* Ready state */
.res-card.ready {
  border-left: 3px solid var(--purple);
}
.res-card.ready:hover {
  border-color: var(--purple);
  border-left-color: var(--purple);
  box-shadow: 0 22px 40px -18px rgba(82,48,218,.22), 0 2px 8px rgba(82,48,218,.06);
}
.res-card.ready::before {
  color: rgba(82,48,218,.05);
}
.res-card.ready:hover::before {
  transform: translate(-4px, -2px);
}

/* Soon state */
.res-card.soon {
  background: linear-gradient(180deg, var(--white) 0%, var(--paper) 100%);
}
.res-card.soon .res-icon {
  background: var(--paper);
  color: var(--ink-3);
  border: 1px solid var(--line);
}
.res-card.soon::before {
  color: rgba(1,22,36,.04);
}

/* Existing state */
.res-card.existing {
  border-left: 3px solid var(--navy);
}
.res-card.existing::before {
  color: rgba(1,22,36,.05);
  font-size: 90px;
  top: 2px;
}
.res-card.existing:hover {
  border-color: var(--navy);
  border-left-color: var(--navy);
}

/* Icon */
.res-icon {
  width: 56px; height: 56px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.res-card.ready .res-icon {
  background: var(--purple);
}
.res-icon svg { width: 24px; height: 24px; }
/* icon 状态点 */
.res-icon::after {
  content: '';
  position: absolute;
  bottom: -3px; right: -3px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--green);
  border: 2.5px solid var(--white);
}
.res-card.soon .res-icon::after {
  background: var(--ink-4);
}

.res-body { flex: 1; min-width: 0; }
.res-tag-row {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.res-phase {
  display: inline-block;
  font-family:'Poppins',sans-serif;
  font-size: 10px; font-weight: 800;
  color: var(--purple);
  letter-spacing: .18em;
  padding: 3px 9px;
  background: var(--purple-tint);
  border-radius: 3px;
}
.res-card.soon .res-phase {
  background: var(--paper-2);
  color: var(--ink-3);
}
.res-card.existing .res-phase {
  background: var(--navy-tint);
  color: var(--navy);
}
.res-status {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 9px;
  border-radius: 3px;
  font-size: 10px; font-weight: 700;
  letter-spacing: .06em;
  font-family:'Poppins',sans-serif;
  text-transform: uppercase;
}
.res-status.ready {
  background: var(--green-tint);
  color: var(--green);
}
.res-status.soon {
  background: var(--paper-2);
  color: var(--ink-3);
}
.res-status-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: currentColor;
}
.res-card h3 {
  font-family: 'Poppins',sans-serif;
  font-size: 19px; font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -.02em;
}
.res-card p {
  font-size: 13.5px; color: var(--ink-2);
  line-height: 1.65;
  margin-bottom: 18px;
}
.res-actions {
  display: flex; gap: 10px; flex-wrap: wrap;
  align-items: center;
}
.res-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 16px;
  border-radius: 4px;
  font-size: 12.5px; font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all .18s;
  font-family: 'Poppins',sans-serif;
  letter-spacing: .01em;
  white-space: nowrap;
}
.res-btn svg { width: 13px; height: 13px; }
.res-btn-primary {
  background: var(--purple);
  color: var(--white);
}
.res-btn-primary:hover {
  background: var(--purple-2);
}
.res-btn-navy {
  background: var(--navy);
  color: var(--white);
}
.res-btn-navy:hover {
  background: var(--purple);
}
.res-btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--line);
}
.res-btn-ghost:hover {
  border-color: var(--navy);
}
.res-btn-disabled {
  background: var(--paper-2);
  color: var(--ink-4);
  cursor: not-allowed;
}
.res-note {
  font-size: 11.5px;
  color: var(--ink-4);
  margin-left: auto;
  padding: 4px 0;
}

/* ── Divider note ─────────────────────────────── */
.divider-note {
  max-width: 1120px; margin: 32px auto 0;
  padding: 22px 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--purple);
  border-radius: 6px;
  display: flex; align-items: center; gap: 18px;
}
.divider-note-icon {
  width: 40px; height: 40px;
  border-radius: 6px;
  background: var(--purple-tint);
  color: var(--purple);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.divider-note-icon svg { width: 20px; height: 20px; }
.divider-note-text {
  flex: 1;
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.65;
}
.divider-note-text strong {
  color: var(--navy);
  font-family: 'Poppins',sans-serif;
  font-weight: 700;
  display: block;
  margin-bottom: 3px;
  font-size: 14px;
  letter-spacing: -.01em;
}

/* ── Contact ─────────────────────────────────── */
.contact {
  padding: 80px 24px;
  background: var(--paper);
}
.contact-inner {
  max-width: 780px; margin: 0 auto;
  padding: 48px 44px 44px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  position: relative;
}
.contact-inner::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 3px;
  background: var(--purple);
  border-radius: 8px 8px 0 0;
}
.contact-head {
  text-align: center;
  margin-bottom: 32px;
}
.contact-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700;
  color: var(--purple); letter-spacing: .28em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-family: 'Poppins',sans-serif;
}
.contact-eyebrow::before, .contact-eyebrow::after {
  content: ''; width: 22px; height: 1px; background: rgba(82,48,218,.5);
}
.contact-head h2 {
  font-family: 'Poppins',sans-serif;
  font-size: 26px; font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -.025em;
}
.contact-head p {
  font-size: 14px;
  color: var(--ink-3);
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-group { display: flex; flex-direction: column; }
.form-full { margin-bottom: 14px; }
.form-group label {
  font-size: 12px; font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 7px;
  font-family: 'Poppins',sans-serif;
  letter-spacing: .01em;
}
.form-group input,
.form-group textarea {
  padding: 12px 14px;
  background: var(--paper);
  border: 1.5px solid transparent;
  border-radius: 4px;
  color: var(--ink);
  font-size: 14px;
  outline: none;
  transition: all .15s;
  font-family: inherit;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--purple-glow);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-status {
  font-size: 13px; min-height: 20px; margin-bottom: 10px;
  font-weight: 500;
}
.form-status.err  { color: #DC2626; }
.form-status.ok   { color: var(--green); }
.contact-actions {
  display: flex; align-items: center; gap: 18px;
  margin-top: 6px;
  flex-wrap: wrap;
}
.btn-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px;
  background: var(--purple);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 13px; font-weight: 600;
  cursor: pointer;
  transition: all .18s;
  font-family: 'Poppins',sans-serif;
  letter-spacing: .01em;
}
.btn-submit:hover { background: var(--purple-2); }
.btn-submit svg { width: 14px; height: 14px; }
.contact-alt {
  font-size: 12.5px;
  color: var(--ink-3);
  line-height: 1.7;
}
.contact-alt a {
  color: var(--navy);
  font-weight: 600;
  border-bottom: 1px solid var(--line);
  transition: all .15s;
}
.contact-alt a:hover { color: var(--purple); border-color: var(--purple); }

/* ── Footer ────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.55);
  padding: 40px 24px 30px;
}
.footer-inner {
  max-width: 1120px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-brand { display: inline-flex; align-items: center; gap: 12px; color: rgba(255,255,255,.8); }
.footer-brand .brand-mark { background: rgba(255,255,255,.08); }
.footer-brand .brand-mark::after { background: var(--orange); }
.footer-brand .brand-text .b1 { color: var(--white); }
.footer-brand .brand-text .b2 { color: rgba(255,255,255,.45); }
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  font-family: 'Poppins',sans-serif;
}
.footer-links {
  display: flex; gap: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  color: rgba(255,255,255,.6);
  font-size: 12.5px;
  transition: color .15s;
  font-family: 'Poppins',sans-serif;
  font-weight: 500;
}
.footer-links a:hover { color: var(--purple); }

/* ── Toast ────────────────────────────────────── */
#_toast {
  position: fixed; bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--navy); color: var(--white);
  padding: 14px 22px; border-radius: 4px;
  font-size: 13.5px; font-weight: 500;
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
  z-index: 200; opacity: 0;
  transition: all .3s ease;
  max-width: calc(100vw - 32px);
}
#_toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── 响应式 ────────────────────────────────────── */
@media (max-width: 900px) {
  .res-grid { grid-template-columns: 1fr; gap: 18px; }
  .progress-strip-inner { padding: 12px 18px; }
}
@media (max-width: 640px) {
  .page { padding-top: 60px; }
  .floating-lang { top: 12px; right: 12px; }
  .resources { padding: 28px 20px 24px; }
  .res-card { padding: 24px; gap: 16px; }
  .res-card::before { font-size: 96px; top: -12px; right: -4px; }
  .res-icon { width: 48px; height: 48px; border-radius: 7px; }
  .res-icon svg { width: 22px; height: 22px; }
  .res-note { margin-left: 0; }
  .divider-note { margin: 24px 20px 0; padding: 20px 22px; gap: 14px; }
  .divider-note-icon { width: 36px; height: 36px; }
  .contact { padding: 52px 20px; }
  .contact-inner { padding: 34px 26px 30px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-actions { flex-direction: column; align-items: stretch; }
  .btn-submit { width: 100%; }
  .contact-alt { text-align: center; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer-links { justify-content: center; }
}
