:root{
  --bg:#fffdfb;
  --panel:#ffffff;
  --panel2:#f7f8fb;
  --text:#17223b;
  --muted:#667085;
  --line:#e3e7ef;
  --burgundy:#a62345;
  --burgundy-dark:#861b37;
  --rose:#f8e9ee;
  --gold:#f2c879;
  --danger:#b42318;
  --success:#117a55;
  --shadow:0 16px 42px rgba(29,41,57,.09);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:Inter,Arial,sans-serif
}
.wrap{width:min(1160px,calc(100% - 36px));margin:auto}
header{
  position:sticky;
  top:0;
  z-index:10;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line)
}
.nav{height:72px;display:flex;align-items:center;justify-content:space-between}
.logo{display:flex;align-items:center;gap:9px;text-decoration:none;font-weight:800}
.logo span{
  display:grid;
  place-items:center;
  width:34px;
  height:34px;
  border-radius:11px;
  background:var(--burgundy);
  color:#fff
}
.logo b{color:var(--text)}
nav{display:flex;gap:22px}
nav a{
  color:var(--text);
  text-decoration:none;
  font-size:14px;
  font-weight:700
}
nav a:hover{color:var(--burgundy)}
.hero{
  min-height:580px;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:55px;
  align-items:center;
  background:
    radial-gradient(circle at 82% 24%,rgba(242,200,121,.42),transparent 25%),
    radial-gradient(circle at 63% 68%,rgba(166,35,69,.10),transparent 35%),
    linear-gradient(135deg,#fff 0%,#fff8f3 56%,#fdf2f5 100%);
  width:100%;
  max-width:none;
  padding-left:max(18px,calc((100vw - 1160px)/2));
  padding-right:max(18px,calc((100vw - 1160px)/2))
}
.hero small,.heading small,.tool-head small,.about small{
  color:var(--burgundy);
  font-weight:800;
  letter-spacing:.13em
}
.hero h1{
  font:800 54px/1.05 Montserrat;
  margin:14px 0 20px;
  letter-spacing:-.035em
}
.hero p,.tool-head p,.about p,.heading p{
  color:var(--muted);
  font-size:18px;
  line-height:1.65
}
.hero-card,.panel{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:22px;
  padding:25px;
  box-shadow:var(--shadow)
}
.hero-card{transform:rotate(1deg)}
.hero-card>b{font:800 28px Montserrat}
.chips{display:flex;flex-wrap:wrap;gap:8px}
.chips i{
  font-style:normal;
  background:var(--panel2);
  border:1px solid var(--line);
  padding:9px 11px;
  border-radius:999px;
  font-size:12px;
  color:#475467
}
.hero-actions,.button-row{display:flex;flex-wrap:wrap;gap:10px;margin-top:22px}
.btn{
  display:inline-block;
  border:1px solid var(--burgundy);
  border-radius:11px;
  padding:12px 18px;
  font-weight:800;
  cursor:pointer;
  text-decoration:none;
  font-family:inherit;
  transition:.2s ease
}
.btn:hover{transform:translateY(-1px)}
.primary{
  background:var(--burgundy);
  color:white;
  border-color:var(--burgundy)
}
.primary:hover{background:var(--burgundy-dark);border-color:var(--burgundy-dark)}
.ghost{background:#fff;color:var(--burgundy)}
.danger{
  background:#fff;
  color:var(--danger);
  border-color:#f3b8b4
}
.heading{padding:75px 0 25px}
.heading h2,.about h2,.tool-head h2{
  font:800 36px Montserrat;
  margin:10px 0;
  letter-spacing:-.025em
}
.cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:15px;
  padding-bottom:90px
}
.card{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:18px;
  padding:22px;
  min-height:205px;
  cursor:pointer;
  transition:.2s ease;
  box-shadow:0 10px 28px rgba(29,41,57,.06)
}
.card:hover{
  transform:translateY(-4px);
  border-color:#d9a5b4;
  box-shadow:0 18px 38px rgba(29,41,57,.10)
}
.card .icon{
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  border-radius:13px;
  background:var(--rose);
  font-size:24px
}
.card h3{font:700 17px Montserrat;margin:17px 0 8px}
.card p{color:var(--muted);font-size:14px;line-height:1.55}
.hidden{display:none}
.workspace{
  padding:55px 0 90px;
  border-top:1px solid var(--line);
  background:linear-gradient(180deg,#fff8f9,#fffdfb)
}
.tool-head{max-width:800px;margin-bottom:25px}
.columns{
  display:grid;
  grid-template-columns:390px 1fr;
  gap:20px;
  align-items:start
}
.panel h3{font:700 22px Montserrat}
label{
  display:block;
  color:#475467;
  font-size:13px;
  font-weight:700;
  margin:14px 0
}
input,select,textarea{
  width:100%;
  margin-top:7px;
  padding:12px;
  border-radius:11px;
  border:1px solid #cfd5df;
  background:#fff;
  color:var(--text);
  font:inherit
}
input:focus,select:focus,textarea:focus{
  outline:3px solid rgba(166,35,69,.12);
  border-color:var(--burgundy)
}
textarea{min-height:110px;resize:vertical}
pre,.output{
  white-space:pre-wrap;
  min-height:260px;
  background:#fbfbfc;
  border:1px solid var(--line);
  padding:18px;
  border-radius:14px;
  font:14px/1.65 Inter;
  color:var(--text)
}
.output h4{font:700 16px Montserrat;margin:0 0 10px}
.output p{color:var(--muted)}
.cta{
  margin-top:22px;
  padding:17px;
  border-radius:13px;
  background:var(--rose);
  border:1px solid #efcbd5;
  color:var(--muted)
}
.cta b{color:var(--text)}
.about{
  background:linear-gradient(135deg,#fff4ef,#f9e9ee 54%,#f7e8cf);
  border-block:1px solid var(--line);
  padding:80px 0
}
.about .wrap{max-width:850px}
footer{padding:30px 0;color:var(--muted);font-size:13px;background:#fff}
.mini-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.status{margin-top:12px;font-weight:800}
.status.ok{color:var(--success)}
.status.bad{color:var(--danger)}
.split-row{
  display:grid;
  grid-template-columns:1fr 130px auto;
  gap:10px;
  align-items:end;
  margin-bottom:10px
}
.split-row label{margin:0}
.meter-line{
  display:flex;
  justify-content:space-between;
  gap:12px;
  border-bottom:1px solid var(--line);
  padding:7px 0
}
.copy-note{color:var(--muted);font-size:12px;margin-top:8px}
@media(max-width:950px){
  .hero,.columns{grid-template-columns:1fr}
  .hero{padding-top:60px;padding-bottom:60px}
  .cards{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:620px){
  nav{display:none}
  .hero h1{font-size:39px}
  .cards{grid-template-columns:1fr}
  .hero{padding:55px 18px}
  .columns{grid-template-columns:1fr}
  .mini-grid,.split-row{grid-template-columns:1fr}
}