:root {
  --bg: #071a0e;
  --bg2: #0a2312;
  --card: #0e2a18;
  --stroke: #235c38;
  --green: #35d15f;
  --green-light: #8cf2ac;
  --accent: #cdff4d;
  --text: #eafff0;
  --text-dim: #8fb89c;
  --radius: 18px;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", Roboto, Helvetica, Arial, sans-serif;
  background:
    radial-gradient(1200px 600px at 50% -10%, #0f3a1e 0%, transparent 60%),
    var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 920px; margin: 0 auto; padding: 0 20px; }

/* Top bar */
.topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
}
.topbar .logo { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.topbar .logo img { width: 34px; height: 34px; border-radius: 8px; }
.lang-switch { display: flex; gap: 6px; }
.lang-switch button {
  background: transparent; border: 1px solid var(--stroke); color: var(--text-dim);
  padding: 6px 12px; border-radius: 999px; cursor: pointer; font-size: 14px;
  transition: all .15s;
}
.lang-switch button.active { background: var(--green); color: #04140a; border-color: var(--green); font-weight: 600; }

/* Hero */
.hero { text-align: center; padding: 40px 0 30px; }
.hero img.shot {
  width: 230px; max-width: 64vw; border-radius: 28px;
  box-shadow: var(--shadow); border: 1px solid var(--stroke);
}
.hero h1 {
  font-size: 38px; line-height: 1.2; margin: 26px 0 12px; letter-spacing: -0.5px;
}
.hero .tagline { font-size: 18px; color: var(--text-dim); max-width: 600px; margin: 0 auto; }
.cta {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 26px;
  padding: 15px 32px; background: var(--green); color: #04140a;
  border-radius: 14px; font-weight: 700; font-size: 17px; text-decoration: none;
  box-shadow: 0 8px 24px rgba(53, 209, 95, 0.3); transition: transform .15s;
}
.cta:hover { transform: translateY(-2px); }
.subnote { margin-top: 12px; font-size: 14px; color: var(--text-dim); }

/* Sections */
section { padding: 36px 0; }
section h2 { font-size: 26px; margin-bottom: 22px; text-align: center; }

.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.feature {
  background: var(--card); border: 1px solid var(--stroke); border-radius: var(--radius);
  padding: 22px; transition: transform .15s, border-color .15s;
}
.feature:hover { transform: translateY(-3px); border-color: var(--green); }
.feature .icon { font-size: 30px; margin-bottom: 10px; }
.feature .name { font-weight: 700; margin-bottom: 6px; font-size: 17px; }
.feature .desc { color: var(--text-dim); font-size: 15px; }

/* How */
.steps { display: grid; gap: 14px; max-width: 680px; margin: 0 auto; }
.step {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--card); border: 1px solid var(--stroke);
  border-radius: var(--radius); padding: 18px 20px;
}
.step .num {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  background: var(--accent); color: #1a2400; font-weight: 800;
  display: grid; place-items: center; font-size: 15px;
}
.step .txt strong { display: block; margin-bottom: 2px; }
.step .txt span { color: var(--text-dim); font-size: 15px; }

/* Privacy callout */
.callout {
  background: var(--card); border: 1px solid var(--stroke);
  border-radius: var(--radius); padding: 24px; text-align: center;
}
.callout a { color: var(--green-light); }

/* Footer */
.links { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; padding: 24px 0 4px; }
.links a { color: var(--text-dim); text-decoration: none; }
.links a:hover { color: var(--green-light); }
footer { text-align: center; color: var(--text-dim); font-size: 14px; padding: 24px 0 48px; }

/* Privacy page */
.doc { padding: 30px 0 60px; }
.doc h1 { font-size: 30px; margin-bottom: 8px; }
.doc .updated { color: var(--text-dim); margin-bottom: 28px; }
.doc h2 { font-size: 20px; margin: 28px 0 10px; color: var(--green-light); }
.doc p { margin-bottom: 12px; color: #cfe6d8; }
.doc ul { margin: 0 0 12px 22px; }
.doc li { margin-bottom: 6px; color: #cfe6d8; }
.doc a { color: var(--green-light); }
.back { display: inline-block; margin-bottom: 20px; color: var(--text-dim); text-decoration: none; }

[data-lang-hide] { display: none !important; }
