:root{
  --navy:#0B1F33;
  --teal:#18C1B8;
  --bg:#ffffff;
  --muted:#465564;
  --line:rgba(11,31,51,.12);
  --soft:#F7F9FB;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family:'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--navy);
}

main{
  max-width:1120px;
  margin:0 auto;
  padding:0 24px 70px;
}

/* Header */
.nav{
  max-width:1120px;
  margin:0 auto;
  padding:22px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

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

.brand-icon{
  width:44px;
  height:44px;
  display:block;
  flex:0 0 auto;
}

.brand-logo{
  height:22px;
  width:auto;
  display:block;
  flex:0 1 auto;
}

.nav-btn{
  text-decoration:none;
  color:var(--navy);
  border:1px solid var(--line);
  padding:10px 16px;
  border-radius:999px;
  font-weight:700;
  white-space:nowrap;
}

/* Hero */
.hero{
  padding:70px 0 34px;
}

.hero-top{
  margin-bottom:14px;
}

.hero-logo{
  height:34px;
  width:auto;
  display:block;
}

.hero h1{
  font-size:clamp(38px, 5vw, 64px);
  line-height:1.05;
  letter-spacing:-0.03em;
  max-width:860px;
  margin:0 0 14px;
}

.hero p{
  font-size:18px;
  line-height:1.55;
  color:var(--muted);
  max-width:680px;
  margin:0 0 20px;
}

.hero-cta{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  margin:0 0 18px;
}

.primary-btn{
  background:var(--teal);
  color:#fff;
  text-decoration:none;
  padding:14px 22px;
  border-radius:999px;
  font-weight:800;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

/* Pills */
.pill-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.pill{
  border:1px solid var(--line);
  background:#fff;
  border-radius:999px;
  padding:8px 12px;
  font-weight:700;
  font-size:13px;
  color:var(--navy);
}

/* Features */
.features{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
  margin:16px 0 10px;
}

.card{
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
  background:#fff;
}

.card h3{
  margin:0 0 8px;
  font-size:16px;
  letter-spacing:-0.01em;
}

.card p{
  margin:0;
  color:var(--muted);
  line-height:1.5;
}

/* Waitlist */
.waitlist{
  margin-top:28px;
  border:1px solid var(--line);
  border-radius:22px;
  padding:26px;
  background:var(--soft);
}

.waitlist-head{
  margin-bottom:10px;
}

.waitlist-logo{
  height:26px;
  width:auto;
  display:block;
}

.waitlist h2{
  margin:0 0 6px;
  font-size:26px;
  letter-spacing:-0.02em;
}

.waitlist p{
  margin:0 0 14px;
  color:var(--muted);
}

.form{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:10px;
}

.form input{
  flex:1;
  min-width:240px;
  padding:12px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  font-size:14px;
  background:#fff;
}

.form button{
  padding:12px 18px;
  border-radius:999px;
  border:none;
  background:var(--teal);
  color:#fff;
  font-weight:800;
  cursor:pointer;
}

.fineprint{
  margin-top:12px;
  font-size:12px;
  color:var(--muted);
}

/* Footer */
.footer{
  display:flex;
  align-items:center;
  gap:10px;
  padding:24px 0 0;
  color:var(--muted);
  font-size:13px;
}

.footer-logo{
  height:18px;
  width:auto;
  display:block;
}

.footer-dot{
  opacity:.55;
}

/* Slower spin */
.spin{
  transform-origin:50% 50%;
  animation:logoSpin 3.6s linear infinite; /* slowed down */
}

@keyframes logoSpin{
  from{ transform:rotate(0deg); }
  to{ transform:rotate(360deg); }
}

@media (prefers-reduced-motion: reduce){
  .spin{ animation:none; }
}

/* Mobile */
@media (max-width: 900px){
  .features{ grid-template-columns:1fr; }
  .nav{ padding:18px 18px; }
  main{ padding:0 18px 60px; }
}
