:root {
    --bg: #FBF9F6;
    --ink: #1A1417;
    --body: #3E343A;
    --muted: #7A6F75;
    --line: #EAE3D8;
    --teal: #6398A5;
    --teal-dark: #52838F;
    --teal-ink: #4A7F8D;
    --card: #F7F4EF;
    --white: #fff;
    --serif: "Newsreader", Georgia, "Songti SC", SimSun, serif;
    --sans: "Plus Jakarta Sans", "PingFang SC", "Microsoft YaHei", sans-serif;
  }
  * { box-sizing: border-box; margin: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }
  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }

  .wrap { max-width: 920px; margin: 0 auto; padding: 0 24px; }

  nav {
    position: sticky; top: 0; z-index: 30;
    border-bottom: 1px solid var(--line);
    background: rgba(251,249,246,0.9);
    backdrop-filter: blur(8px);
  }
  .nav-inner { height: 56px; display: flex; align-items: center; justify-content: space-between; }
  .brand { display: flex; align-items: center; gap: 10px; font-family: var(--serif); font-weight: 700; font-size: 1.05rem; }
  .brand img { width: 28px; height: 28px; background: transparent; }
  .hero-brand img { width: 68px; height: 68px; background: transparent; filter: drop-shadow(0 1px 2px rgba(26,20,23,.12)); }
  .btn-soon { opacity: 0.72; cursor: default; pointer-events: none; }
  .nav-right { display: flex; align-items: center; gap: 16px; font-size: 12px; color: var(--muted); }
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    border: 0; border-radius: 10px; cursor: pointer;
    font-family: inherit; font-weight: 500; transition: background .15s, transform .1s;
  }
  .btn-teal { background: var(--teal); color: #fff; }
  .btn-teal:hover { background: var(--teal-dark); }
  .btn-sm { padding: 6px 12px; font-size: 12px; }
  .btn-lg { padding: 12px 22px; font-size: 14px; }
  .btn-ghost {
    width: 100%; padding: 12px 16px; border-radius: 12px;
    border: 1px solid #D5CBC0; background: #EDE7DD; color: var(--ink); font-size: 12px;
  }
  .btn-ghost:hover { background: #E3DCCE; }
  .btn-block { width: 100%; }

  .hero { padding: 64px 0 8px; max-width: 640px; }
  .hero-brand { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
  .hero h1 { font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 2.4rem); letter-spacing: -0.02em; }
  .hero .tag { font-size: 13px; color: var(--muted); font-weight: 500; margin-top: 4px; }
  .hero .lead { font-family: var(--serif); font-size: 1.15rem; color: var(--body); line-height: 1.75; }
  .hero-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 22px; }
  .hero-meta { font-size: 12px; color: var(--muted); }
  .langs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
  .langs span {
    font-size: 13px; color: var(--teal-ink);
    border: 1px solid rgba(99,152,165,0.35);
    background: #fff; border-radius: 999px; padding: 4px 12px;
  }

  .timeline { position: relative; padding: 72px 0 24px; }
  .timeline::before {
    content: ""; position: absolute; left: calc(20px - 0.75px); top: 24px; bottom: 32px;
    width: 1.5px; background: rgba(99,152,165,0.25);
  }
  .step { display: flex; gap: 22px; margin-bottom: 72px; position: relative; }
  .step:last-child { margin-bottom: 0; }
  .num {
    width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
    border: 1px solid rgba(99,152,165,0.5); background: var(--bg);
    color: var(--teal-ink);
    display: grid; place-items: center;
    font-family: var(--sans); font-size: 14px; font-weight: 500;
    font-variant-numeric: tabular-nums; line-height: 1; padding: 0;
  }
  .num span { display: block; line-height: 1; transform: translateY(0.5px); }
  .step-body { flex: 1; display: grid; grid-template-columns: 1fr 1.6fr; gap: 28px; align-items: center; }
  .step.reverse .step-body { grid-template-columns: 1.6fr 1fr; }
  .step.reverse .step-copy { order: 2; }
  .step h3 { font-family: var(--serif); font-size: 1.6rem; margin-bottom: 8px; }
  .step h3 .en { font-size: 0.72em; font-weight: 500; color: var(--muted); margin-left: 8px; }
  .step p { font-size: 14px; color: #5A4E55; }

  .shot {
    border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
    background: var(--white); box-shadow: 0 18px 40px -28px rgba(26,20,23,0.35);
  }
  .shot img { width: 100%; }

  hr.div { border: 0; border-top: 1px solid var(--line); margin: 16px 0 56px; }

  .more { padding: 8px 0 8px; }
  .more-head { max-width: 560px; margin: 0 auto 48px; text-align: center; }
  .more-head h2 { font-family: var(--serif); font-size: 1.8rem; margin-bottom: 10px; }
  .more-head p { font-size: 14px; color: #6B5E66; }
  .more-row {
    display: grid; grid-template-columns: 1fr 1.35fr; gap: 36px;
    align-items: center; margin-bottom: 64px;
  }
  .more-row:last-child { margin-bottom: 0; }
  .more-row.visual-left { grid-template-columns: 1.35fr 1fr; }
  .more-row.visual-left .more-shot { order: -1; }
  .more-kicker {
    font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--teal-ink); font-weight: 600; margin-bottom: 10px;
  }
  .more-copy h3 {
    font-family: var(--serif); font-size: 1.45rem; margin-bottom: 10px;
    display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  }
  .more-copy h3 .tag {
    font-family: var(--sans); font-size: 11px; font-weight: 500;
    color: var(--teal-ink); background: rgba(99,152,165,0.12);
    border-radius: 999px; padding: 2px 8px; letter-spacing: 0;
    text-transform: none;
  }
  .more-copy > p { font-size: 14px; color: #5A4E55; line-height: 1.75; }
  .more-pills { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
  .more-pills li {
    display: inline-flex; align-items: center; gap: 8px;
    border: 1px solid var(--line); background: #fff; border-radius: 999px;
    padding: 5px 12px; font-size: 12px; color: var(--ink);
  }
  .more-pills li::before {
    content: ""; width: 6px; height: 6px; border-radius: 50%;
    background: var(--teal); flex-shrink: 0;
  }
  .more-shot { margin: 0; }

  .pricing { padding-bottom: 88px; }
  .pricing-head { text-align: center; max-width: 520px; margin: 0 auto 40px; }
  .pricing-head h2 { font-family: var(--serif); font-size: 1.9rem; letter-spacing: -0.02em; }
  .plans { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: stretch; }
  .plan {
    border-radius: 20px; padding: 32px 30px 32px;
    display: flex; flex-direction: column; gap: 40px;
    border: 1px solid var(--line); background: #F4EFEA;
  }
  .plan.pro {
    border: 1.5px solid var(--teal); background: var(--white); position: relative;
    box-shadow: 0 22px 44px -30px rgba(74, 127, 141, 0.55);
  }
  .plan .badge {
    position: absolute; top: -12px; right: 24px;
    display: inline-flex; align-items: center; justify-content: center;
    width: 28px; height: 28px; border-radius: 999px;
    background: var(--teal); color: #fff;
    box-shadow: 0 6px 14px rgba(99, 152, 165, 0.35);
  }
  .plan-top { display: flex; justify-content: space-between; align-items: center; }
  .plan h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; }
  .pill {
    font-size: 11px; padding: 4px 10px; border-radius: 999px;
    background: #EAE3D8; color: #5A4E55; font-weight: 500;
  }
  .price {
    font-family: var(--serif); font-size: 2.85rem; font-weight: 700;
    letter-spacing: -0.03em; line-height: 1.1; margin-top: 16px;
  }
  .price.soon { font-size: 2.05rem; letter-spacing: -0.02em; }
  .price small {
    font-family: var(--sans); font-size: 12px; font-weight: 400;
    color: var(--muted); margin-left: 6px;
  }
  .plan .intro { font-size: 13px; color: #6B5E66; margin: 14px 0 0; line-height: 1.65; }
  .plan ul {
    list-style: none; padding: 0; display: grid; gap: 13px;
    font-size: 13.5px; color: var(--body); margin-top: 22px;
  }
  .plan li { display: flex; gap: 10px; align-items: flex-start; line-height: 1.45; }
  .plan li .mark {
    width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px;
    color: transparent; position: relative;
  }
  .plan li .mark::before {
    content: ""; position: absolute; inset: 0;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234A7F8D' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / 16px 16px no-repeat;
  }
  .plan.pro li:first-child { font-weight: 600; color: var(--ink); }
  .plan .cta { margin-top: auto; width: 100%; border-radius: 14px; padding: 14px 16px; }
  .plan .btn-ghost {
    background: #EDE7DD; border-color: #D8CFC4; font-size: 13px; padding: 14px 16px;
  }
  .plan .btn-ghost:hover { background: #E3DCCE; border-color: #C9BBAE; }
  .plan.pro .cta { font-size: 13px; padding: 14px 16px; gap: 8px; box-shadow: 0 1px 2px rgba(26,20,23,.08); }

  footer {
    border-top: 1px solid var(--line); padding: 28px 0;
    font-size: 12px; color: #8A7982;
  }
  .foot { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
  .foot a { color: var(--ink); }

  @media (max-width: 800px) {
    .timeline::before { left: calc(16px - 0.75px); }
    .num { width: 32px; height: 32px; }
    .step-body, .step.reverse .step-body { grid-template-columns: 1fr; }
    .step.reverse .step-copy { order: 0; }
    .plans { grid-template-columns: 1fr; }
    .more-row, .more-row.visual-left { grid-template-columns: 1fr; }
    .more-row.visual-left .more-shot { order: 0; }
    .hero { padding-top: 40px; }
  }

  .lang-switch {
    display: inline-flex; align-items: stretch;
    border: 1px solid var(--line); border-radius: 999px;
    overflow: hidden; background: #fff;
  }
  .lang-switch a {
    padding: 4px 11px; font-size: 11px; font-weight: 600;
    letter-spacing: 0.02em; color: var(--muted);
  }
  .lang-switch a:hover { color: var(--ink); }
  .lang-switch a.is-active { background: var(--teal); color: #fff; }
  .nav-meta { white-space: nowrap; }

  .legal-switch { display: inline-flex; gap: 8px; font-size: 12px; margin-left: 12px; }
  .legal-switch a { color: #7A6F75; }
  .legal-switch a.is-active { color: #1A1417; font-weight: 600; }

@media (max-width: 800px) {
  .nav-meta { display: none; }
  .nav-right { gap: 10px; }
}

