
:root{
  --bg:#ffffff;
  --text:#0f172a;
  --muted:#475569;
  --accent:#a78b3c;
  --card:#f8fafc;
  --ring: rgba(181,138,43,0.35);
  --dark:#0b1020;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0; background:var(--bg); color:var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height:1.6;
}
a{color:var(--accent); text-decoration:none}
a:hover{opacity:.9}
.container{max-width:1200px; margin:0 auto; padding:0 20px}

/* Header */
header{position:sticky; top:0; z-index:40; backdrop-filter:saturate(180%) blur(8px); background:rgba(255,255,255,.85); border-bottom:1px solid #e5e7eb}
.nav{display:flex; align-items:center; justify-content:space-between; height:68px}
.brand{display:flex; gap:12px; align-items:center}
.brand img{height:38px; width:auto; display:block}
.brand-name{font-weight:800; letter-spacing:.2px}
.tag{font-size:12px; color:var(--muted)}
.nav a.btn{margin-left:10px}

/* Buttons */
.btn{display:inline-flex; align-items:center; justify-content:center; gap:10px; padding:12px 18px; border-radius:999px; font-weight:600; border:1px solid var(--accent); color:#fff; background:#111827; box-shadow:0 6px 16px rgba(181,138,43,.25)}
.btn.secondary{background:transparent; color:var(--accent); border:1.5px solid var(--accent)}
.btn.ghost{background:transparent; color:var(--text); border:1px solid #e6e2d3}
.btn:focus{outline:3px solid var(--ring)}

/* Sections */
section{scroll-margin-top:80px}
.hero{padding:90px 0 40px; text-align:center}
.domain{font-size: clamp(30px, 4.5vw, 56px); font-weight:800; letter-spacing:.2px}
.kicker{color:var(--accent); font-weight:700; text-transform:uppercase; letter-spacing:2px; font-size:12px}
.sub{max-width:820px; margin:18px auto 28px; color:var(--muted)}
.cta{display:flex; gap:14px; justify-content:center; flex-wrap:wrap}

/* Feature band */
.band{background:var(--card); border-top:1px solid #e5e7eb; border-bottom:1px solid #e5e7eb}
.band-inner{display:flex; gap:22px; justify-content:center; align-items:center; padding:14px 0}
.band-inner img{height:22px; opacity:.9}

/* Grid */
.grid{display:grid; grid-template-columns:repeat(3,1fr); gap:18px}
.card{background:var(--card); padding:18px; border:1px solid #e6e2d3; border-radius:16px}
.card h3{margin:6px 0}
.badge{display:inline-block; padding:2px 8px; border-radius:999px; background:#111827; color:#f8fafc; font-size:12px}
.price{font-weight:800}
.card .cta{justify-content:flex-start}

/* About */
.about{display:grid; grid-template-columns:1.25fr .75fr; gap:24px}
.about .pill{display:inline-block; padding:6px 12px; border:1px dashed var(--accent); border-radius:999px; color:var(--accent); font-weight:600}
.about .list{list-style:none; padding:0; margin:0}
.about .list li{margin:6px 0; color:var(--muted)}

/* Contact */
.contact{margin:48px auto; text-align:center; background:var(--dark); color:#f8fafc; padding:26px 18px; border-radius:18px}
.contact a{color:#f5d77b; font-weight:700}

/* Footer */
footer{border-top:1px solid #e5e7eb; padding:30px 0; color:#475569; font-size:14px; margin-top:40px}
.footer-grid{display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap}
.legal a{color:var(--muted)}

@media (max-width:1000px){
  .grid{grid-template-columns:1fr 1fr}
  .about{grid-template-columns:1fr}
}
@media (max-width:640px){
  .grid{grid-template-columns:1fr}
}

/* Form Card */
.form-card{background:var(--card); border:1px solid #e6e2d3; border-radius:18px; padding:22px; box-shadow:0 8px 24px rgba(17,24,39,.06)}
.form-grid{display:grid; grid-template-columns:1fr 1fr; gap:14px}
.form-grid .full{grid-column:1/-1}
.helper{color:var(--muted); font-size:12px; margin-top:6px}
.input{transition: box-shadow .2s ease, border-color .2s ease}
.input:focus{box-shadow:0 0 0 6px rgba(167,139,60,.12); border-color:#d4c59a}
#contact .btn{min-width:160px}
