
:root{
  --paper:#ebe8e7;
  --ink:#0d0d0d;
  --card:#fbfbfa;
  --muted:#77716f;
  --line:#c9c4c1;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  min-width:320px;
  color:var(--ink);
  background:var(--paper);
  font-family:Arial, Helvetica, sans-serif;
}
button,a{font:inherit}
button{cursor:pointer}

.hero{
  position:relative;
  min-height:100vh;
  overflow:hidden;
  background:
    radial-gradient(circle at 64% 86%, rgba(255,255,255,.48), transparent 23%),
    var(--paper);
}

.nav{
  position:relative;
  z-index:20;
  height:76px;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  padding:0 4vw;
}

.brand{
  justify-self:start;
  color:var(--ink);
  font-size:20px;
  line-height:1;
  font-weight:900;
  text-decoration:none;
  letter-spacing:-.06em;
}

.nav-links{
  display:flex;
  gap:48px;
  align-items:center;
}
.nav-links a{
  color:#171717;
  text-decoration:none;
  font-size:11px;
  font-weight:700;
  letter-spacing:-.02em;
}
.nav-links a:hover{opacity:.55}

.download-btn{
  justify-self:end;
  min-width:112px;
  padding:12px 22px;
  border:1.4px solid #111;
  border-radius:999px;
  background:transparent;
  font-size:12px;
  transition:.2s ease;
}
.download-btn:hover{background:#111;color:white}

.ghost-word{
  position:absolute;
  z-index:0;
  top:38px;
  left:0;
  right:0;
  text-align:center;
  text-indent:-.0627em;  /* cancels the trailing letter-space so the glyphs, not the box, are centred */
  font-size:clamp(170px,31vw,470px);
  font-weight:700;
  line-height:.8;
  letter-spacing:-.09em;
  color:rgba(255,255,255,.58);
  user-select:none;
  pointer-events:none;
}

.visual{
  position:absolute;
  z-index:4;
  left:-2%;
  width:104%;
  top:58px;
  aspect-ratio:1651 / 484;
}
.visual canvas{
  position:absolute;
  top:-21.4286%;
  left:-21.4286%;
  display:block;
  width:142.857%;
  height:142.857%;
}

.bottom-layout{
  position:absolute;
  z-index:8;
  left:0;
  right:0;
  bottom:5.8vh;
  display:grid;
  grid-template-columns:1.05fr .95fr .9fr;
  align-items:end;
  gap:34px;
  padding:0 3.5vw;
}

.headline-block{align-self:end}
.dark-cta{
  display:flex;
  align-items:center;
  gap:14px;
  border:0;
  color:#fff;
  background:#0d0d0d;
  border-radius:999px;
  padding:12px 16px 12px 18px;
  margin:0 0 18px;
  font-size:11px;
  box-shadow:0 5px 14px rgba(0,0,0,.08);
}
.dark-cta .arrow{font-size:15px;line-height:1}
.dark-cta:hover{transform:translateY(-1px)}

h1{
  margin:0;
  max-width:470px;
  font-size:clamp(48px,5.1vw,82px);
  line-height:.88;
  letter-spacing:-.07em;
  font-weight:500;
}

.intro{
  margin:0 0 8px;
  max-width:390px;
  color:#67615e;
  font-size:12px;
  line-height:1.45;
}

.stat-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.stat-card{
  min-height:142px;
  padding:17px 17px 15px;
  border-radius:22px;
  background:rgba(255,255,255,.88);
  box-shadow:0 5px 13px rgba(50,45,42,.05);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  backdrop-filter:blur(8px);
}
.stat-card strong{
  font-size:34px;
  line-height:1;
  letter-spacing:-.05em;
  font-weight:500;
}
.stat-bottom{
  display:grid;
  grid-template-columns:1fr 34px;
  gap:10px;
  align-items:end;
}
.stat-bottom p{
  margin:0;
  color:#716b68;
  font-size:8px;
  line-height:1.22;
}
.round-link{
  width:34px;
  height:34px;
  border:0;
  border-radius:50%;
  background:#0b0b0b;
  color:white;
  font-size:15px;
}
.round-link:hover{transform:rotate(45deg)}

.demo-panel{
  position:fixed;
  z-index:50;
  right:28px;
  bottom:28px;
  width:min(420px,calc(100vw - 32px));
  padding:28px;
  border-radius:24px;
  background:#111;
  color:white;
  box-shadow:0 24px 80px rgba(0,0,0,.25);
}
.demo-panel[hidden]{display:none}
.demo-panel .eyebrow{font-size:10px;letter-spacing:.15em;opacity:.6}
.demo-panel h2{font-size:30px;line-height:1;margin:14px 0 14px;letter-spacing:-.04em}
.demo-panel p{margin:0;color:#c6c6c6;line-height:1.5;font-size:14px}
.panel-close{
  position:absolute;
  top:14px;
  right:16px;
  border:0;
  background:transparent;
  color:white;
  font-size:28px;
}
.sr-anchor{position:absolute;bottom:0}

@media (max-width:900px){
  .nav{grid-template-columns:1fr auto}
  .nav-links{display:none}
  .visual{position:relative;top:0;left:0;width:100%;margin:24px 0 8px}
  .ghost-word{top:100px}
  .bottom-layout{
    position:relative;
    bottom:auto;
    padding:0 24px 40px;
    grid-template-columns:1fr;
    gap:28px;
  }
  h1{font-size:58px}
  .intro{max-width:500px;font-size:14px}
  .stat-grid{max-width:520px}
}

@media (max-width:560px){
  .nav{height:66px;padding:0 18px}
  .brand{font-size:18px}
  .download-btn{min-width:auto;padding:10px 16px}
  .ghost-word{font-size:160px;top:105px}
  .bottom-layout{padding:0 18px 28px}
  h1{font-size:48px}
  .stat-grid{grid-template-columns:1fr 1fr}
  .stat-card{min-height:132px;border-radius:18px}
  .stat-card strong{font-size:30px}
}
