:root{
  --bg:#070A0F;
  --fg:#F3F5FF;
  --muted:rgba(243,245,255,.68);
  --muted2:rgba(243,245,255,.45);
  --line:rgba(243,245,255,.12);
  --grad: linear-gradient(90deg, #FF7A45 0%, #FF4FB5 48%, #7C4DFF 100%);
  --shadow: 0 20px 60px rgba(0,0,0,.55);
  --radius: 18px;
}

*{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(900px 600px at 50% 15%, rgba(255,79,181,.14), transparent 55%),
              radial-gradient(700px 500px at 20% 35%, rgba(255,122,69,.12), transparent 60%),
              radial-gradient(800px 600px at 80% 60%, rgba(124,77,255,.14), transparent 55%),
              var(--bg);
  color:var(--fg);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.9}

.wrap{
  min-height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:64px 20px;
}

.card{
  width:min(860px, 100%);
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7,10,15,.55);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  padding: 40px 38px 28px;
}

.top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom: 28px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}

.brand img{
  width:54px;
  height:54px;
  border-radius: 14px;
  display:block;
}

.brand h1{
  margin:0;
  font-size: 22px;
  letter-spacing:.2px;
  line-height:1.1;
}

.brand .sub{
  margin-top:4px;
  color:var(--muted2);
  font-size: 13px;
}

.pill{
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  border:1px solid var(--line);
  color:var(--muted);
  background: rgba(255,255,255,.03);
  white-space:nowrap;
}

.hero{
  padding: 10px 0 16px;
}

.hero h2{
  margin:0;
  font-size: clamp(34px, 4.2vw, 52px);
  letter-spacing:-.02em;
  line-height:1.05;
}

.grad{
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip:text;
  color: transparent;
}

.hero p{
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 58ch;
}

.hr{
  margin: 26px 0 18px;
  height:1px;
  background: var(--line);
  border:0;
}

.points{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.point{
  border:1px solid var(--line);
  border-radius: 14px;
  padding: 14px 14px 12px;
  background: rgba(255,255,255,.02);
}

.point .t{
  font-size: 13px;
  color: var(--fg);
  margin:0 0 6px;
}

.point .d{
  margin:0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted2);
}

.footer{
  margin-top: 22px;
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:10px;
  color: var(--muted2);
  font-size: 13px;
}

.smallcaps{
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size: 11px;
  color: var(--muted2);
}

@media (max-width: 760px){
  .card{padding: 28px 20px 20px;}
  .top{flex-direction:column; align-items:flex-start}
  .points{grid-template-columns: 1fr;}
  .brand img{width:52px;height:52px}
}
