﻿:root{
  --bg:#f6f3ee;
  --ink:#0f172a;
  --muted:#475569;
  --brand:#0ea5a4;
  --brand2:#f97316;
  --card:rgba(255,255,255,.72);
  --border:rgba(15,23,42,.12);
  --shadow:0 18px 60px rgba(15,23,42,.12);
  --mono:"IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --sans:"Space Grotesk", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--sans);
  color:var(--ink);
  background:var(--bg);
  overflow-x:hidden;
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.9}

.bg{position:fixed; inset:0; z-index:-2; overflow:hidden}
.blob{
  position:absolute;
  width:880px;
  height:880px;
  border-radius:999px;
  filter:blur(40px);
  opacity:.65;
  transform:translate3d(0,0,0);
  animation:float 14s ease-in-out infinite;
}
.b1{left:-280px; top:-240px; background:radial-gradient(circle at 30% 30%, rgba(14,165,164,.88), rgba(14,165,164,0) 60%)}
.b2{right:-300px; bottom:-260px; background:radial-gradient(circle at 30% 30%, rgba(249,115,22,.78), rgba(249,115,22,0) 62%); animation-delay:-4.2s}

.grid-noise{
  position:absolute; inset:0;
  background:
    linear-gradient(to right, rgba(15,23,42,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15,23,42,.04) 1px, transparent 1px);
  background-size:48px 48px;
  mask-image:radial-gradient(circle at 50% 0%, rgba(0,0,0,.95), rgba(0,0,0,0) 68%);
  opacity:.55;
}

@keyframes float{
  0%,100%{transform:translate(0,0) scale(1)}
  50%{transform:translate(22px, -16px) scale(1.03)}
}

.wrap{max-width:1120px; margin:0 auto; padding:0 20px 48px}

.top{
  position:sticky; top:0;
  display:flex; align-items:center; justify-content:space-between;
  gap:18px;
  padding:16px 20px;
  backdrop-filter:saturate(180%) blur(10px);
  background:rgba(246,243,238,.72);
  border-bottom:1px solid var(--border);
}

.brand{display:flex; align-items:center; gap:10px; font-weight:700; letter-spacing:.2px}
.brand__mark{
  width:36px; height:36px; display:grid; place-items:center;
  border-radius:12px;
  background:linear-gradient(135deg, var(--brand), var(--brand2));
  color:#fff;
  font-family:var(--mono);
  font-size:14px;
}
.brand--small .brand__mark{width:30px; height:30px; border-radius:10px}

.nav{display:flex; gap:14px; flex-wrap:wrap; justify-content:center; font-weight:600}
.nav a{padding:8px 10px; border-radius:999px; border:1px solid transparent}
.nav a:hover{border-color:var(--border); background:rgba(255,255,255,.6)}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 14px;
  border-radius:14px;
  font-weight:700;
  border:1px solid var(--border);
  background:rgba(255,255,255,.6);
  box-shadow:0 6px 18px rgba(15,23,42,.06);
  transition:transform .12s ease, box-shadow .12s ease;
}
.btn:active{transform:translateY(1px)}
.btn--primary{background:linear-gradient(135deg, var(--brand), var(--brand2)); color:#fff; border-color:transparent; box-shadow:0 16px 40px rgba(14,165,164,.22)}
.btn--ghost{background:rgba(255,255,255,.45)}

.hero{display:grid; grid-template-columns:1.35fr .65fr; gap:22px; padding:44px 0 18px}
.kicker{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.55);
  font-family:var(--mono);
  font-size:12px;
  color:rgba(15,23,42,.82);
}
.hero h1{margin:14px 0 0; font-size:44px; line-height:1.02; letter-spacing:-.6px}
.lead{margin:14px 0 0; font-size:18px; line-height:1.5; color:var(--muted); max-width:62ch}
.cta{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}

.badges{display:flex; gap:8px; flex-wrap:wrap; margin-top:14px}
.badge{padding:8px 10px; border-radius:999px; border:1px solid var(--border); background:rgba(255,255,255,.55); font-family:var(--mono); font-size:12px}
.fine{margin-top:12px; font-size:12px; color:rgba(71,85,105,.92)}

.hero__panel{
  border:1px solid var(--border);
  background:var(--card);
  border-radius:18px;
  box-shadow:var(--shadow);
  padding:16px;
}
.panel__top{display:flex; justify-content:space-between; align-items:center; gap:10px; margin-bottom:10px}
.panel__title{font-weight:800}
.panel__pill{font-family:var(--mono); font-size:12px; padding:6px 10px; border-radius:999px; background:rgba(15,23,42,.06); border:1px solid rgba(15,23,42,.08)}
.panel__list{list-style:none; padding:0; margin:10px 0 12px; display:grid; gap:10px}
.panel__list li{display:flex; align-items:center; gap:10px; font-weight:600}
.dot{width:10px; height:10px; border-radius:999px; background:linear-gradient(135deg, var(--brand), var(--brand2))}
.panel__meta{border-top:1px dashed rgba(15,23,42,.18); padding-top:12px; display:grid; gap:8px}
.meta__row{display:flex; justify-content:space-between; font-family:var(--mono); font-size:12px}
.meta__k{color:rgba(71,85,105,.9)}

.section{padding:42px 0 0}
.section__head{margin-bottom:18px}
.section__head h2{font-size:28px; letter-spacing:-.4px; margin:0}
.section__sub{margin:8px 0 0; color:var(--muted)}

.cards{display:grid; grid-template-columns:repeat(3, 1fr); gap:14px}
.card{
  padding:16px;
  border-radius:18px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.62);
  box-shadow:0 10px 30px rgba(15,23,42,.08);
  min-height:160px;
}
.card__icon{
  width:40px; height:40px;
  display:grid; place-items:center;
  border-radius:14px;
  background:rgba(15,23,42,.06);
  font-family:var(--mono);
  font-weight:700;
}
.card h3{margin:12px 0 6px; font-size:18px}
.card p{margin:0; color:var(--muted); line-height:1.5}

.offer{display:grid; grid-template-columns:1.25fr .75fr; gap:14px; align-items:stretch}
.offer__big{font-size:18px; margin:0 0 10px}
.offer__cta{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
.pricebox{
  border:1px solid var(--border);
  background:rgba(255,255,255,.68);
  border-radius:18px;
  padding:16px;
  box-shadow:var(--shadow);
}
.pricebox__tag{font-family:var(--mono); font-size:12px; color:rgba(71,85,105,.9)}
.pricebox__price{font-size:44px; font-weight:800; letter-spacing:-.8px; margin-top:6px}
.pricebox__note{color:var(--muted)}
.pricebox__hr{height:1px; background:rgba(15,23,42,.12); margin:14px 0}
.pricebox__row{display:flex; justify-content:space-between; font-family:var(--mono); font-size:12px; padding:6px 0}

.ref{display:grid; grid-template-columns:1fr 1fr; gap:14px}
.ref__card{border:1px solid var(--border); background:rgba(255,255,255,.62); border-radius:18px; padding:16px; box-shadow:0 10px 30px rgba(15,23,42,.08)}
.ref__card--note{background:linear-gradient(180deg, rgba(14,165,164,.10), rgba(249,115,22,.06))}
.steps{margin:10px 0 0; padding-left:18px; color:var(--muted)}
.ref__cta{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
.mono{font-family:var(--mono); font-size:12px; color:rgba(15,23,42,.82)}

.faq{display:grid; gap:10px}
.faq__item{border:1px solid var(--border); border-radius:18px; background:rgba(255,255,255,.62); padding:12px 14px}
.faq__item summary{cursor:pointer; font-weight:800}
.faq__body{color:var(--muted); padding:10px 2px 4px; line-height:1.55}

.foot{margin-top:44px; display:flex; align-items:flex-end; justify-content:space-between; gap:16px; padding-top:18px; border-top:1px solid var(--border)}
.foot__fine{margin-top:8px; color:rgba(71,85,105,.92); font-size:12px}
.foot__right{display:flex; gap:12px; flex-wrap:wrap; font-weight:700}

.reveal{opacity:0; transform:translateY(14px); transition:opacity .55s ease, transform .55s ease}
.reveal.is-visible{opacity:1; transform:none}

@media (max-width: 920px){
  .hero{grid-template-columns:1fr; padding-top:26px}
  .hero h1{font-size:38px}
  .cards{grid-template-columns:1fr 1fr}
  .offer{grid-template-columns:1fr}
  .ref{grid-template-columns:1fr}
  .nav{display:none}
}

@media (max-width: 520px){
  .hero h1{font-size:32px}
  .lead{font-size:16px}
  .cards{grid-template-columns:1fr}
  .top{padding:14px 14px}
  .wrap{padding:0 14px 40px}
}
