 :root{
  --bg:#f7f2ea;
  --paper:#ffffff;
  --text:#162132;
  --muted:#637083;
  --line:#e5d9cb;
  --accent:#e3702d;
  --accent-soft:#fff0e6;
  --navy:#162132;
  --shadow:0 30px 80px rgba(22,33,50,.12);
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(227,112,45,.13), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(22,33,50,.08), transparent 28%),
    linear-gradient(135deg,#f8f3ec 0%,#f4ede3 48%,#fbf8f3 100%);
  overflow-x:hidden;
}
body:before{
  content:"";
  position:fixed;
  inset:24px;
  border:1px solid rgba(22,33,50,.08);
  border-radius:34px;
  pointer-events:none;
}
.page{
  min-height:100%;
  display:grid;
  place-items:center;
  padding:28px;
}
.card{
  width:min(920px,100%);
  background:rgba(255,255,255,.88);
  border:1px solid var(--line);
  border-radius:34px;
  box-shadow:var(--shadow);
  padding:46px;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.card:before{
  content:"";
  position:absolute;
  width:260px;
  height:260px;
  right:-120px;
  top:-120px;
  background:rgba(227,112,45,.11);
  border-radius:50%;
}
.brand-panel{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:86px;
  padding:16px 26px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  box-shadow:0 14px 34px rgba(22,33,50,.07);
}
.logo{
  width:min(280px,72vw);
  height:auto;
  display:block;
}
.status{
  margin:30px auto 18px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background:var(--accent-soft);
  color:#a34d1e;
  border:1px solid rgba(227,112,45,.20);
  font-size:13px;
  font-weight:850;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.dot{
  width:9px;
  height:9px;
  border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 0 6px rgba(227,112,45,.14);
}
h1{
  margin:0;
  font-size:clamp(44px,7vw,78px);
  line-height:.94;
  letter-spacing:-.07em;
  color:var(--navy);
}
.motto{
  max-width:760px;
  margin:24px auto 0;
  font-size:clamp(19px,2.4vw,27px);
  line-height:1.38;
  letter-spacing:-.025em;
  font-weight:780;
  color:#263449;
}
.sub{
  max-width:660px;
  margin:18px auto 0;
  font-size:17px;
  line-height:1.65;
  color:var(--muted);
}
.divider{
  width:100%;
  height:1px;
  background:linear-gradient(90deg,transparent,var(--line),transparent);
  margin:34px 0 22px;
}
.footer-line{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  color:var(--muted);
  font-size:14px;
}
.footer-line a{
  color:var(--navy);
  font-weight:850;
  text-decoration:none;
  padding:10px 14px;
  border:1px solid var(--line);
  border-radius:999px;
  background:#fff;
}
@media(max-width:720px){
  body:before{inset:12px;border-radius:24px}
  .page{padding:18px}
  .card{padding:30px 22px;border-radius:26px}
  .brand-panel{padding:14px 18px;border-radius:20px}
  .status{font-size:11px}
  .footer-line{flex-direction:column;justify-content:center}
}
