:root{
  --bg:#0f1115;
  --card:#151821;
  --text:#f6f7fb;
  --muted:#a7b0c0;
  --accent:#ff7b00;
  --ring:#000000;
}
*{ box-sizing:border-box }
html,body{ height:100% }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 800px at 20% 10%, #151821 0%, #0f1115 50%, #0b0d12 100%);
  color:var(--text);
  display:grid;
  place-items:center;
}
.wrap{
  width:min(720px, 92vw);
  text-align:center;
  padding:48px 28px;
  background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  border:1px solid rgba(255,255,255,0.06);
  border-radius:24px;
  box-shadow:0 10px 30px rgba(0,0,0,0.35), inset 0 0 0 1px rgba(255,255,255,0.02);
  backdrop-filter: blur(6px);
}
.logo{
  margin:0 auto 18px;
  width:88px; height:88px;
  position:relative;
  border-radius:50%;
  border:3px solid var(--ring);
  display:grid; place-items:center;
  overflow:visible;
}
.logo::before, .logo::after{
  content:""; position:absolute; border-radius:50%; border:2px solid var(--ring);
  opacity:.9;
}
.logo::before{ width:20px; height:20px; right:-14px; top:6px }
.logo::after{ width:10px; height:10px; right:-28px; top:-6px }
.fish{
  width:56px; height:32px; border-radius:20px 26px 26px 20px / 16px 16px 16px 16px;
  background:linear-gradient(90deg, var(--accent) 0 26%, #fff 26% 36%, var(--accent) 36% 64%, #fff 64% 74%, var(--accent) 74% 100%);
  position:relative;
  box-shadow: inset 0 -2px 0 rgba(0,0,0,0.2);
}
.fish:after{
  content:""; position:absolute; right:-12px; top:6px; width:0; height:0;
  border-top:10px solid transparent; border-bottom:10px solid transparent; border-left:14px solid var(--accent);
  filter: drop-shadow(0 0 0 rgba(0,0,0,0.3));
}
h1{ font-size:clamp(28px, 4vw, 44px); margin:10px 0 8px; letter-spacing:.3px }
p{ margin:0 0 22px; color:var(--muted); font-size:clamp(15px, 1.9vw, 18px); line-height:1.6 }
.badge{
  display:inline-block; padding:6px 10px; border:1px dashed rgba(255,255,255,0.25);
  border-radius:999px; color:var(--muted); font-size:12px; letter-spacing:.2px; margin-bottom:10px
}
.cta{
  display:inline-block; padding:12px 18px; border-radius:12px; text-decoration:none; font-weight:600;
  background:var(--accent); color:#111; box-shadow:0 6px 16px rgba(255,123,0,0.35);
  transition: transform .15s ease, box-shadow .15s ease;
}
.cta:hover{ transform: translateY(-1px); box-shadow:0 10px 22px rgba(255,123,0,0.45) }
.links{ margin-top:18px; font-size:14px }
.links a{ color:var(--muted); text-underline-offset:3px }
footer{ position:fixed; left:0; right:0; bottom:14px; text-align:center; font-size:12px; color:#8a92a6 }
