:root {
  color-scheme: dark;
  --bg: #05070a;
  --panel: #0a1016;
  --line: rgba(167, 222, 248, .15);
  --text: #eff9ff;
  --muted: #8499a6;
  --cyan: #8ce9ff;
  --cyan-soft: rgba(140, 233, 255, .1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 73% 12%, rgba(54, 162, 210, .13), transparent 28rem),
    repeating-linear-gradient(135deg, transparent 0 29px, rgba(255,255,255,.013) 29px 30px),
    var(--bg);
  font: 16px/1.55 "Avenir Next", "Gill Sans", sans-serif;
}

a { color: inherit; }
.shell { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.brand img { width: 38px; height: 38px; border-radius: 10px; box-shadow: 0 0 24px rgba(140,233,255,.22); }
.brand strong { font-family: "Iowan Old Style", Baskerville, serif; font-size: 19px; }
.nav-links { display: flex; gap: 24px; color: var(--muted); font-size: 13px; }
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--cyan); }

.hero {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 78px;
  align-items: center;
  min-height: 650px;
  padding: 70px 0 90px;
}
.eyebrow { color: var(--cyan); font-size: 11px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
h1, h2 { font-family: "Iowan Old Style", Baskerville, serif; font-weight: 600; letter-spacing: -.035em; }
h1 { max-width: 700px; margin: 18px 0 22px; font-size: clamp(52px, 7vw, 86px); line-height: .97; }
h1 em { color: var(--cyan); font-style: normal; }
.lede { max-width: 620px; color: #a5b8c4; font-size: 20px; }
.actions { display: flex; gap: 12px; margin-top: 32px; }
.button { padding: 12px 17px; border: 1px solid var(--line); text-decoration: none; font-size: 13px; font-weight: 750; letter-spacing: .04em; }
.button.primary { color: #041018; border-color: var(--cyan); background: var(--cyan); }

.demo {
  position: relative;
  padding: 1px;
  background: linear-gradient(145deg, rgba(140,233,255,.52), rgba(140,233,255,.05) 42%, rgba(255,255,255,.08));
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.45));
}
.demo-inner { padding: 24px; background: #081017; clip-path: inherit; }
.demo-top { display: flex; align-items: center; gap: 12px; margin-bottom: 25px; }
.demo-top img { width: 42px; height: 42px; border-radius: 10px; }
.demo-top strong { font-family: "Iowan Old Style", Baskerville, serif; font-size: 22px; }
.guard { margin-left: auto; width: 42px; height: 24px; border: 1px solid var(--cyan); border-radius: 20px; background: var(--cyan-soft); }
.guard::after { content: ""; display: block; width: 16px; height: 16px; margin: 3px 0 0 21px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 13px var(--cyan); }
.url-card { margin: 12px 0; padding: 14px; border: 1px solid var(--line); background: #05090d; font: 12px/1.55 "SFMono-Regular", Consolas, monospace; overflow-wrap: anywhere; }
.url-card small { display: block; margin-bottom: 8px; color: var(--muted); font: 700 9px "Avenir Next", sans-serif; letter-spacing: .16em; text-transform: uppercase; }
.bad { color: #ff9d8e; text-decoration: line-through; text-decoration-thickness: 1px; }
.good { color: #9df5d0; }

.proof { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.proof article { padding: 35px; border-right: 1px solid var(--line); }
.proof article:last-child { border: 0; }
.proof strong { display: block; margin-bottom: 6px; color: var(--cyan); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.proof p { margin: 0; color: var(--muted); }

.details { padding: 100px 0; }
.details h2 { max-width: 600px; margin: 0 0 45px; font-size: 48px; line-height: 1.03; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid article { min-height: 215px; padding: 26px; border: 1px solid var(--line); background: linear-gradient(145deg, rgba(140,233,255,.055), rgba(255,255,255,.012)); }
.grid b { color: var(--cyan); font: 700 11px "Avenir Next", sans-serif; letter-spacing: .14em; }
.grid h3 { margin: 35px 0 10px; font-family: "Iowan Old Style", Baskerville, serif; font-size: 24px; }
.grid p { margin: 0; color: var(--muted); font-size: 14px; }

footer { display: flex; justify-content: space-between; padding: 25px 0 40px; border-top: 1px solid var(--line); color: #647985; font-size: 12px; }
.policy { max-width: 760px; padding: 70px 0 120px; }
.policy h1 { font-size: 62px; }
.policy h2 { margin-top: 42px; font-size: 28px; }
.policy p, .policy li { color: #a5b8c4; }

@media (max-width: 800px) {
  .hero { grid-template-columns: 1fr; gap: 45px; padding-top: 50px; }
  .proof, .grid { grid-template-columns: 1fr; }
  .proof article { border-right: 0; border-bottom: 1px solid var(--line); }
  .nav-links { gap: 14px; }
}
