.ip-hero{
  position:relative;
  max-width:100%;
  overflow-x:clip;
  padding-top:72px;
  padding-bottom:88px;
  background:linear-gradient(180deg,var(--bg-hero-top),var(--bg-hero-bottom));
}
.ip-hero::before{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(var(--accent-soft) 1px,transparent 1px),
    linear-gradient(90deg,var(--accent-soft) 1px,transparent 1px);
  background-size:32px 32px;
  content:"";
  opacity:.55;
  pointer-events:none;
}
.ip-hero__inner{
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:center;
}
.ip-hero h1{
  max-width:820px;
  margin-bottom:16px;
  text-align:center;
}
.ip-hero__lede{
  max-width:760px;
  margin-bottom:34px;
  color:var(--text-muted);
  font-size:18px;
  text-align:center;
}
.ip-result{
  width:min(920px,100%);
  overflow:hidden;
  padding:30px;
  box-shadow:var(--shadow-window);
}
.ip-result__header{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:24px;
  padding-bottom:22px;
  border-bottom:1px solid var(--border);
}
.ip-result__header h2{
  margin-bottom:0;
  font-size:28px;
}
.ip-result__kicker{
  margin-bottom:5px;
  color:var(--accent);
  font-family:var(--font-mono);
  font-size:11px;
  font-weight:800;
  letter-spacing:.12em;
}
.ip-query-state{
  display:inline-flex;
  min-height:32px;
  align-items:center;
  padding:5px 12px;
  border:1px solid var(--border);
  border-radius:var(--radius-pill);
  background:var(--panel-muted);
  color:var(--text-muted);
  font-size:13px;
  font-weight:800;
  white-space:nowrap;
}
.ip-query-state[data-state="ready"]{
  border-color:var(--success);
  background:var(--accent-soft);
  color:var(--success);
}
.ip-query-state[data-state="error"]{
  border-color:var(--error);
  color:var(--error);
}
.ip-result__grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:1px;
  margin:22px 0 0;
  overflow:hidden;
  border:1px solid var(--border);
  border-radius:var(--radius-md);
  background:var(--border);
}
.ip-result__grid>div{
  min-height:112px;
  padding:18px;
  background:var(--panel);
}
.ip-result__grid dt{
  margin-bottom:7px;
  color:var(--text-muted);
  font-size:13px;
}
.ip-result__grid dd{
  margin:0;
  overflow-wrap:anywhere;
  color:var(--text);
  font-family:var(--font-mono);
  font-size:17px;
  font-weight:700;
}
.ip-result__grid .ip-result__primary{
  grid-column:1/-1;
  min-height:126px;
  background:var(--accent);
}
.ip-result__primary dt{
  color:var(--border);
}
.ip-result__primary dd{
  color:var(--on-accent);
  font-size:clamp(25px,4vw,42px);
  letter-spacing:-.03em;
}
.ip-result__message{
  margin:18px 0 0;
  color:var(--text-muted);
  font-size:14px;
}
.ip-result__message[data-state="error"]{
  color:var(--error);
}
.ip-result__actions{
  display:flex;
  gap:12px;
  margin-top:22px;
}
.ip-result__actions .btn{
  min-width:150px;
}
.ip-copy-buffer{
  position:fixed;
  left:-9999px;
  width:1px;
  height:1px;
}
.ip-explain{
  display:grid;
  gap:30px;
}
.ip-explain__intro{
  max-width:790px;
}
.ip-explain__intro p:last-child,
.ip-dns__layout>div>p{
  color:var(--text-muted);
}
.ip-note-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}
.ip-note{
  min-height:260px;
  padding:24px;
}
.ip-note>svg{
  margin-bottom:24px;
  color:var(--accent);
}
.ip-note h3{
  margin-bottom:10px;
  font-size:21px;
}
.ip-note p{
  margin-bottom:0;
  color:var(--text-muted);
  font-size:15px;
}
.ip-dns{
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  background:var(--panel-bar);
}
.ip-dns__layout{
  display:grid;
  grid-template-columns:minmax(0,5fr) minmax(0,6fr);
  gap:64px;
  align-items:start;
}
.ip-checklist{
  padding:30px;
}
.ip-checklist h3{
  margin-bottom:22px;
}
.ip-checklist ul{
  display:grid;
  gap:18px;
  margin:0;
  padding:0;
  list-style:none;
}
.ip-checklist li{
  position:relative;
  padding-left:24px;
}
.ip-checklist li::before{
  position:absolute;
  top:.65em;
  left:0;
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--accent);
  content:"";
}
.ip-checklist strong,
.ip-checklist span{
  display:block;
}
.ip-checklist strong{
  margin-bottom:3px;
  color:var(--text);
}
.ip-checklist span{
  color:var(--text-muted);
  font-size:14px;
}
.ip-privacy{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:20px;
  align-items:start;
  padding:28px;
}
.ip-privacy__icon{
  display:grid;
  width:52px;
  height:52px;
  place-items:center;
  border-radius:50%;
  background:var(--accent-soft);
  color:var(--accent);
}
.ip-privacy h2{
  margin-bottom:7px;
  font-size:25px;
}
.ip-privacy p{
  margin-bottom:0;
  color:var(--text-muted);
}
@media (max-width:860px){
  .ip-note-grid{
    grid-template-columns:1fr;
  }
  .ip-note{
    min-height:0;
  }
  .ip-dns__layout{
    grid-template-columns:1fr;
    gap:32px;
  }
}
@media (max-width:640px){
  .ip-hero{
    padding-top:48px;
    padding-bottom:64px;
  }
  .ip-hero__lede{
    font-size:16px;
  }
  .ip-result{
    padding:20px 16px;
  }
  .ip-result__header{
    align-items:flex-start;
    flex-direction:column;
    gap:12px;
  }
  .ip-result__grid{
    grid-template-columns:1fr;
  }
  .ip-result__grid .ip-result__primary{
    grid-column:auto;
  }
  .ip-result__grid>div{
    min-height:96px;
  }
  .ip-result__actions{
    flex-direction:column;
  }
  .ip-result__actions .btn{
    width:100%;
  }
  .ip-checklist{
    padding:24px 18px;
  }
  .ip-privacy{
    grid-template-columns:1fr;
    padding:22px 18px;
  }
}