/*
  EzyHost Personal Site
  Theme: modern light-blue, clean cards, big hero, smooth motion
  Tip: if you want darker theme later, we can add a theme toggle.
*/

:root{
  --bg: #f6fbff;
  --bg2:#ffffff;
  --text:#0b1b2b;
  --muted:#4b647c;
  --line: rgba(11,27,43,.10);

  --blue:#2a7fff;
  --blue2:#6bb8ff;
  --blue3:#1c5fd6;

  --card:#ffffff;
  --shadow: 0 18px 55px rgba(10, 40, 80, .10);
  --shadow2: 0 8px 25px rgba(10, 40, 80, .08);
  --radius: 18px;

  --ok:#22c55e;
  --warn:#f59e0b;
  --bad:#ef4444;

  --max: 1140px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 20% -10%, rgba(42,127,255,.18), transparent 55%),
    radial-gradient(900px 600px at 80% 0%, rgba(107,184,255,.22), transparent 55%),
    var(--bg);
  line-height:1.55;
}

a{color:inherit;text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}
.small{font-size:.95rem;color:var(--muted)}
.tiny{font-size:.85rem;color:var(--muted)}
.mono{font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace}

.nav{
  position:sticky;top:0;z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(246,251,255,.88);
  border-bottom: 1px solid var(--line);
}
.nav-inner{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 0;
}
.brand{
  display:flex;align-items:center;gap:10px;font-weight:950;letter-spacing:.2px;
}
.brand-mark{
  width:38px;height:38px;border-radius:14px;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  box-shadow: 0 14px 35px rgba(42,127,255,.25);
}
.nav-links{display:flex;gap:6px;align-items:center}
.nav-links a{
  padding:10px 10px;border-radius:12px;color:var(--muted);
}
.nav-links a:hover{background: rgba(42,127,255,.07); color: var(--text)}
.nav-links a.active{
  background: rgba(42,127,255,.12);
  color: var(--text);
  border: 1px solid rgba(42,127,255,.20);
}
@media (max-width: 980px){ .nav-links{display:none} }

.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:12px 16px;border-radius:14px;
  border:1px solid rgba(42,127,255,.20);
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color:#fff;font-weight:900;
  box-shadow: 0 14px 35px rgba(42,127,255,.18);
}
.btn:hover{filter:brightness(1.02)}
.btn-ghost{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:12px 16px;border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  color: var(--text);
  box-shadow: var(--shadow2);
}
.btn-ghost:hover{background: rgba(42,127,255,.06)}

.pill{
  display:inline-flex;align-items:center;gap:8px;
  padding:7px 12px;border-radius:999px;
  border:1px solid rgba(42,127,255,.18);
  background: rgba(255,255,255,.75);
  color: var(--muted);
}
.pill .dot{width:10px;height:10px;border-radius:99px;background:linear-gradient(135deg,var(--blue),var(--blue2))}

.hero{padding:54px 0 20px}
.hero-grid{display:grid;grid-template-columns: 1.2fr .8fr; gap:22px; align-items:stretch}
@media (max-width: 980px){ .hero-grid{grid-template-columns:1fr} }

.h1{
  font-size: clamp(2.2rem, 3.8vw, 3.35rem);
  line-height:1.05;
  margin: 12px 0 10px;
  letter-spacing:-.4px;
}
.sub{
  font-size:1.08rem;
  color:var(--muted);
  max-width: 62ch;
}
.actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}

.panel{
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.pad{padding:18px}

.kpis{display:grid; grid-template-columns:1fr 1fr; gap:10px}
.kpi{
  border:1px solid var(--line);
  border-radius: 16px;
  padding:12px;
  background: #fff;
  box-shadow: var(--shadow2);
}
.kpi .big{font-weight:950; font-size:1.2rem}
.kpi .lbl{color:var(--muted); font-size:.9rem}

.section{padding:26px 0}
.section h2{margin:0 0 12px; font-size:1.75rem; letter-spacing:-.2px}
.grid3{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
@media (max-width: 980px){ .grid3{grid-template-columns:1fr} }

.card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow2);
}
.card h3{margin:0 0 6px}
.card p{margin:0; color: var(--muted)}
.list{margin:10px 0 0; padding:0 0 0 18px; color: var(--muted)}

.pricing-top{
  display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
}
.toggle{
  display:flex; align-items:center; gap:10px;
  background:#fff; border:1px solid var(--line); border-radius:999px;
  padding:8px 10px; box-shadow: var(--shadow2);
}
.toggle button{
  border:0; background:transparent; cursor:pointer;
  padding:8px 12px; border-radius:999px; font-weight:900; color: var(--muted);
}
.toggle button.active{
  background: rgba(42,127,255,.12);
  color: var(--text);
  border:1px solid rgba(42,127,255,.20);
}

.pricing-wrap{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px; margin-top:12px}
@media (max-width: 1060px){ .pricing-wrap{grid-template-columns:1fr} }

.plan{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
  position:relative;
  overflow:hidden;
}
.plan.featured{
  border: 1px solid rgba(42,127,255,.35);
  box-shadow: 0 22px 65px rgba(42,127,255,.18);
}
.ribbon{
  position:absolute; top:14px; right:-44px;
  transform: rotate(25deg);
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color:#fff;
  padding:8px 60px;
  font-weight:950;
  font-size:.85rem;
}
.price{
  display:flex; align-items:flex-end; justify-content:space-between; gap:10px;
  margin-top:10px;
}
.price .amt{font-weight:950;font-size:2.1rem;letter-spacing:-.6px}
.price .per{color:var(--muted)}
.hr{border:0;border-top:1px solid var(--line); margin:14px 0}

.notice{
  padding:12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(42,127,255,.20);
  background: rgba(42,127,255,.06);
  color: var(--text);
}

.faq{margin-top:12px}
.faq details{
  background:#fff;
  border:1px solid var(--line);
  border-radius: 14px;
  padding:12px 14px;
  box-shadow: var(--shadow2);
}
.faq details + details{margin-top:10px}
.faq summary{cursor:pointer; font-weight:900}
.faq p{margin:10px 0 0; color: var(--muted)}

.input, textarea, select{
  width:100%;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--text);
  outline:none;
  box-shadow: var(--shadow2);
}
textarea{min-height:120px;resize:vertical}
.form-row{display:grid; grid-template-columns:1fr 1fr; gap:12px}
@media (max-width: 860px){ .form-row{grid-template-columns:1fr} }

.footer{
  padding:30px 0;
  margin-top:18px;
  border-top:1px solid var(--line);
  background: rgba(255,255,255,.65);
}
.footer-grid{display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap}
.footer a{color:var(--muted)}
.footer a:hover{color:var(--text)}

/* JS niceties */
.reveal{
  opacity:0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.show{
  opacity:1;
  transform: translateY(0);
}

/* Toast */
.toast{
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background:#fff;
  border:1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 12px 14px;
  display:flex;
  align-items:center;
  gap:10px;
  max-width: min(680px, calc(100vw - 24px));
  z-index: 9999;
}
.toast .dot{
  width:10px;height:10px;border-radius:99px;background: var(--ok);
}
.toast .msg{color: var(--text); font-weight:800}
.toast .sub{color: var(--muted); font-size:.92rem}