:root {
  color-scheme: dark;
  --bg: #071013;
  --panel: rgba(255,255,255,.07);
  --line: rgba(255,255,255,.14);
  --text: #f2fbff;
  --muted: #9fb0b8;
  --accent: #ffce6b;
  --cyan: #5bd7ff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(145deg, rgba(91,215,255,.13), transparent 30rem),
    linear-gradient(315deg, rgba(255,206,107,.12), transparent 28rem),
    var(--bg);
}
.fake-home {
  min-height: 100vh;
  overflow: hidden;
}
.fake-nav {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
}
.fake-nav strong { letter-spacing: .08em; }
.fake-nav span { color: var(--muted); }
.fake-hero {
  min-height: 68vh;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1fr);
  align-items: center;
  gap: 28px;
  padding: clamp(34px, 7vw, 86px) clamp(18px, 5vw, 64px);
}
.fake-kicker {
  margin: 0 0 14px;
  color: var(--accent);
  font-weight: 800;
}
h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 7vw, 92px);
  line-height: .98;
  letter-spacing: 0;
}
.fake-copy > p:not(.fake-kicker) {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.75;
}
.fake-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.fake-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 7px;
  background: var(--accent);
  color: #171006;
  text-decoration: none;
  font-weight: 900;
}
.fake-actions .ghost {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--text);
}
.fake-ship {
  position: relative;
  min-height: 390px;
}
.ship-top {
  position: absolute;
  right: 20%;
  bottom: 52%;
  width: 96px;
  height: 120px;
  border: 1px solid var(--line);
  background: #1b2b31;
}
.ship-top::before {
  content: "";
  position: absolute;
  left: 28px;
  top: -70px;
  width: 18px;
  height: 70px;
  background: var(--cyan);
  box-shadow: 24px 16px 0 #dfefff;
}
.ship-deck {
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: 39%;
  height: 64px;
  transform: skewX(-12deg);
  border: 1px solid rgba(255,255,255,.22);
  background: linear-gradient(90deg, #22333a, #40525a);
}
.ship-hull {
  position: absolute;
  left: 8%;
  right: 10%;
  bottom: 25%;
  height: 92px;
  clip-path: polygon(0 0, 100% 0, 82% 100%, 18% 100%);
  background: linear-gradient(90deg, #102027, #273b43);
  border-bottom: 10px solid #ffce6b;
}
.ship-waves {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18%;
  height: 34px;
  background: repeating-linear-gradient(90deg, rgba(91,215,255,.72) 0 54px, transparent 54px 86px);
  opacity: .8;
}
.fake-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0 clamp(18px, 5vw, 64px) 28px;
}
.fake-grid article,
.fake-faq {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 18px;
}
.fake-grid span {
  color: var(--muted);
  font-size: 13px;
}
.fake-grid strong {
  display: block;
  margin-top: 10px;
  font-size: 26px;
}
.fake-grid p,
.fake-faq p {
  color: var(--muted);
  line-height: 1.6;
}
.fake-faq {
  margin: 0 clamp(18px, 5vw, 64px) 48px;
}
@media (max-width: 760px) {
  .fake-nav,
  .fake-hero,
  .fake-grid {
    display: grid;
    grid-template-columns: 1fr;
  }
  .fake-ship { min-height: 260px; }
}
