:root{
  --bg:#f4f7fb;
  --card:#ffffff;
  --text:#0b1730;
  --muted:#75839a;
  --border:#dfe6ef;
  --blue:#2f6df6;
  --blue2:#3978f7;
  --blue-soft:#edf4ff;
  --green:#12a85d;
  --green-soft:#eafbf1;
  --shadow:0 18px 50px rgba(29,48,77,.08);
}

*{box-sizing:border-box}

html{min-height:100%}

body{
  margin:0;
  min-height:100vh;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 12% 10%,rgba(47,109,246,.05),transparent 26rem),
    radial-gradient(circle at 92% 92%,rgba(47,109,246,.04),transparent 24rem),
    var(--bg);
}

.page{
  min-height:100vh;
  display:grid;
  place-items:center;
  padding:28px 18px;
}

.card{
  width:min(100%,760px);
  padding:34px;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:24px;
  box-shadow:var(--shadow);
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:28px;
}

.brand-mark{
  width:48px;
  height:48px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:#081625;
  box-shadow:0 0 0 1px #bdd2e5 inset;
}

.brand-mark svg{width:41px;height:41px}
.brand-mark .ring{fill:#081625;stroke:#4b8fc0;stroke-width:1.5}
.brand-mark .main{fill:#a9bac8}
.brand-mark .accent{fill:#2183c5}

.brand-name{
  font-size:16px;
  font-weight:900;
  letter-spacing:.045em;
  color:#c9d0d9;
}

.brand-name span{color:#1581c9}

.brand-sub{
  margin-top:5px;
  font-size:11px;
  font-weight:600;
  color:#6f7e94;
}

.status-pill{
  width:max-content;
  display:flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  margin-bottom:18px;
  border-radius:10px;
  color:#245ec7;
  background:var(--blue-soft);
  font-size:10px;
  font-weight:900;
  letter-spacing:.04em;
}

.dot{
  width:7px;
  height:7px;
  border-radius:50%;
  background:#21bd6f;
}

h1{
  margin:0;
  font-size:clamp(32px,6vw,52px);
  line-height:1.05;
  letter-spacing:-.045em;
}

.lead{
  margin:17px 0 0;
  color:var(--muted);
  font-size:clamp(15px,2.2vw,18px);
  line-height:1.7;
}

.lead strong{color:var(--text)}

.domain-box{
  margin:28px 0 18px;
  display:grid;
  grid-template-columns:1fr 42px 1fr;
  align-items:center;
  gap:12px;
}

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

.domain .label{
  display:block;
  margin-bottom:7px;
  color:#71819a;
  font-size:10px;
  font-weight:900;
  letter-spacing:.05em;
  text-transform:uppercase;
}

.domain .value{
  display:block;
  overflow-wrap:anywhere;
  font-size:clamp(15px,2.3vw,18px);
  font-weight:900;
}

.domain.old{
  background:#fbfcfe;
}

.domain.old .value{
  color:#9aa5b5;
  text-decoration:line-through;
  text-decoration-thickness:1px;
}

.domain.new{
  border-color:#bfd3ff;
  background:#f7faff;
  box-shadow:0 7px 18px rgba(47,109,246,.05);
}

.domain.new .value{color:#185fd9}

.arrow{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:13px;
  color:#58708f;
  background:#eef3f9;
}

.arrow svg{
  width:20px;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.note{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.7;
}

.actions{
  display:grid;
  gap:12px;
  margin-top:24px;
}

.btn{
  min-height:72px;
  display:grid;
  grid-template-columns:46px 1fr 24px;
  align-items:center;
  gap:14px;
  padding:12px 16px;
  border-radius:17px;
  text-decoration:none;
  transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease;
}

.btn:hover{transform:translateY(-2px)}

.btn-primary{
  color:#fff;
  background:linear-gradient(135deg,#3779f7,#2764ef);
  box-shadow:0 13px 28px rgba(47,109,246,.18);
}

.btn-secondary{
  color:var(--text);
  background:#fff;
  border:1px solid var(--border);
  box-shadow:0 8px 20px rgba(29,48,77,.04);
}

.btn-secondary:hover{border-color:#cbd9ea}

.btn-icon{
  width:46px;
  height:46px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.18);
}

.btn-secondary .btn-icon{
  color:#16a362;
  background:var(--green-soft);
}

.btn-icon svg{
  width:23px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.btn-copy{
  min-width:0;
  display:flex;
  flex-direction:column;
}

.btn-copy strong{
  font-size:14px;
}

.btn-copy small{
  margin-top:5px;
  font-size:10px;
  opacity:.8;
}

.btn-secondary .btn-copy small{color:#7d8ba0}

.btn-arrow{
  font-size:25px;
  text-align:right;
}

.btn-secondary .btn-arrow{color:#8da0bc}

.security-note{
  margin-top:18px;
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:15px 16px;
  border:1px solid #d9e5f8;
  border-radius:15px;
  background:#f7fbff;
}

.shield{
  width:36px;
  height:36px;
  flex:0 0 36px;
  display:grid;
  place-items:center;
  border-radius:11px;
  color:#2c6dea;
  background:#eaf2ff;
}

.shield svg{
  width:20px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.7;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.security-note>div:last-child{
  display:flex;
  flex-direction:column;
}

.security-note strong{
  font-size:11px;
}

.security-note span{
  margin-top:4px;
  color:#74839a;
  font-size:10px;
  line-height:1.55;
}

.security-note b{color:#2f66d0}

footer{
  margin-top:25px;
  padding-top:17px;
  border-top:1px solid #edf1f6;
  color:#97a3b4;
  font-size:10px;
  text-align:center;
}

@media(min-width:650px){
  .actions{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:620px){
  .page{
    padding:14px;
    align-items:start;
  }

  .card{
    margin-top:8px;
    padding:24px 19px;
    border-radius:20px;
  }

  .brand{
    margin-bottom:24px;
  }

  .domain-box{
    grid-template-columns:1fr;
    gap:9px;
  }

  .arrow{
    margin-inline:auto;
    transform:rotate(90deg);
  }

  .btn{
    min-height:68px;
  }
}
