:root{
  --bg:#f3f1ea;
  --ink:#10110f;
  --muted:#686b63;
  --line:#d6d3c9;
  --accent:#c7ff45;
  --card:#fbfaf6;
  --max:1180px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:Inter,ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  -webkit-font-smoothing:antialiased;
}
a{color:inherit;text-decoration:none}
.site-header{
  max-width:var(--max);
  margin:auto;
  padding:28px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.brand{font-size:22px;font-weight:800;letter-spacing:-.04em}
.brand span{font-weight:500;color:var(--muted)}
.header-link{
  font-size:14px;font-weight:700;
  border-bottom:1px solid currentColor;
  padding-bottom:3px;
}
.hero{
  max-width:var(--max);
  margin:auto;
  padding:100px 24px 80px;
}
.eyebrow{
  text-transform:uppercase;
  letter-spacing:.13em;
  font-size:12px;
  font-weight:800;
  margin-bottom:24px;
}
h1,h2,h3,p{margin-top:0}
h1{
  font-size:clamp(64px,10vw,132px);
  line-height:.84;
  letter-spacing:-.075em;
  max-width:950px;
  margin-bottom:42px;
}
.hero-copy{
  max-width:690px;
  font-size:clamp(20px,2.4vw,30px);
  line-height:1.35;
  letter-spacing:-.025em;
  color:var(--muted);
}
.hero-copy strong{color:var(--ink)}
.actions{display:flex;gap:12px;flex-wrap:wrap;margin:36px 0 72px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 22px;
  border-radius:999px;
  border:1px solid var(--ink);
  font:inherit;
  font-weight:800;
  cursor:pointer;
}
.btn-primary{background:var(--ink);color:white}
.btn-primary:hover{background:#2b2d29}
.btn-secondary{background:transparent}
.btn-secondary:hover{background:rgba(0,0,0,.04)}
.domain-card{
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  padding:26px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.domain-name{font-size:clamp(28px,4vw,54px);font-weight:800;letter-spacing:-.05em}
.status{
  border-radius:999px;
  background:var(--accent);
  padding:10px 15px;
  font-size:13px;
  font-weight:800;
  white-space:nowrap;
}
.section{
  max-width:var(--max);
  margin:auto;
  padding:110px 24px;
}
.section-heading{display:grid;grid-template-columns:1fr 2fr;gap:40px;margin-bottom:70px}
.section-heading .eyebrow{margin:12px 0 0}
h2{
  font-size:clamp(48px,7vw,92px);
  line-height:.93;
  letter-spacing:-.06em;
  margin-bottom:0;
}
.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.grid article{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:20px;
  padding:28px;
  min-height:290px;
}
.num{display:block;color:var(--muted);font-size:13px;font-weight:700;margin-bottom:80px}
h3{font-size:26px;letter-spacing:-.035em;margin-bottom:16px}
.grid p{color:var(--muted);line-height:1.6;margin-bottom:0}
.use-cases{border-top:1px solid var(--line)}
.chips{display:flex;flex-wrap:wrap;gap:12px}
.chips span{
  padding:14px 18px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,255,255,.32);
  font-weight:650;
}
.offer-section{
  background:var(--ink);
  color:white;
  padding:110px max(24px,calc((100vw - var(--max))/2 + 24px));
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
}
.offer-copy p{max-width:500px;color:#bdbfb7;font-size:18px;line-height:1.65;margin-top:30px}
.offer-form{background:#1a1c19;border:1px solid #30332d;border-radius:22px;padding:28px}
.field-row{display:grid;grid-template-columns:1fr 1fr;gap:16px}
label{display:block;margin-bottom:18px}
label span{display:block;font-size:13px;font-weight:700;margin-bottom:8px;color:#d5d7cf}
input,textarea{
  width:100%;
  border:1px solid #42453e;
  background:#10110f;
  color:white;
  border-radius:12px;
  padding:14px 15px;
  font:inherit;
  outline:none;
}
input:focus,textarea:focus{border-color:#a8d93d;box-shadow:0 0 0 3px rgba(199,255,69,.12)}
textarea{resize:vertical}
.offer-form .btn-primary{background:var(--accent);color:var(--ink);border-color:var(--accent)}
.offer-form .btn-primary:hover{filter:brightness(.94)}
.form-footer{display:flex;align-items:center;gap:18px;flex-wrap:wrap}
.privacy{font-size:12px;color:#92968d;margin:0;max-width:280px}
.form-status{margin-top:18px;font-size:14px;min-height:20px}
.form-status.success{color:#c7ff45}
.form-status.error{color:#ff9f9f}
.hp{position:absolute!important;left:-9999px!important;width:1px!important;height:1px!important;overflow:hidden!important}
footer{
  max-width:var(--max);
  margin:auto;
  padding:55px 24px;
  display:grid;
  grid-template-columns:1fr auto auto;
  gap:24px;
  align-items:center;
  color:var(--muted);
  font-size:13px;
}
.footer-brand{color:var(--ink)}
footer p{margin:0}
.small{white-space:nowrap}
@media(max-width:820px){
  .hero{padding-top:70px}
  .section-heading,.offer-section{grid-template-columns:1fr}
  .grid{grid-template-columns:1fr}
  .grid article{min-height:auto}
  .num{margin-bottom:45px}
  .offer-section{gap:45px}
  footer{grid-template-columns:1fr}
}
@media(max-width:560px){
  h1{font-size:62px}
  .field-row{grid-template-columns:1fr}
  .domain-card{align-items:flex-start;flex-direction:column}
  .hero{padding-bottom:55px}
  .section{padding-top:75px;padding-bottom:75px}
}
