
:root{
  --pink:#FF5C5C;
  --bg:#ffffff;
  --text:#111827;
  --muted:#6b7280;
  --border:#e5e7eb;
}

*{box-sizing:border-box;margin:0;padding:0}

body{
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.5;
}

.container{
  max-width:1100px;
  margin:0 auto;
  padding:0 16px;
}

/* HEADER */

.site-header{
  background:#ffffff;
  border-bottom:1px solid var(--border);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 0;
  gap:12px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:inherit;
}

.brand-logo{
  height:40px;
  width:auto;
  border-radius:10px;
}

.brand-text{
  display:flex;
  flex-direction:column;
}

.brand-name{
  font-weight:800;
  letter-spacing:.03em;
}

.brand-tag{
  font-size:.78rem;
  color:var(--muted);
}

.nav a{
  margin-left:18px;
  text-decoration:none;
  color:var(--text);
  font-size:.95rem;
}
.nav a:hover{
  color:var(--pink);
}

/* PAGE */

.page{
  padding:32px 0 48px;
}

/* HERO */

.hero{
  display:grid;
  grid-template-columns:minmax(0,2fr) minmax(0,1.5fr);
  gap:32px;
  align-items:center;
  margin-bottom:40px;
}

.hero-title{
  font-size:2.5rem;
  color:var(--pink);
  margin-bottom:8px;
}
.hero-sub{
  font-size:1rem;
  color:var(--muted);
  margin-bottom:18px;
}

.hero-badges{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:20px;
}
.badge{
  font-size:.8rem;
  padding:4px 10px;
  border-radius:999px;
  border:1px solid rgba(255,92,92,.2);
  background:rgba(255,92,92,.05);
  color:var(--pink);
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.hero-card{
  border-radius:18px;
  border:1px solid var(--border);
  padding:20px;
  background:#fff;
  box-shadow:0 10px 30px rgba(15,23,42,.06);
}

/* Buttons */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 18px;
  border-radius:999px;
  font-weight:600;
  font-size:.95rem;
  text-decoration:none;
  cursor:pointer;
  border:1px solid transparent;
}

.btn-primary{
  background:var(--pink);
  color:#fff;
  border-color:var(--pink);
}
.btn-outline{
  background:#fff;
  color:var(--pink);
  border-color:var(--pink);
}

.btn-full{
  width:100%;
}

/* Sections */

.section{
  margin-bottom:40px;
}

.section h2{
  font-size:1.3rem;
  margin-bottom:12px;
}

.section-sub{
  font-size:.9rem;
  color:var(--muted);
  margin-bottom:18px;
}

.step-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(210px,1fr));
  gap:16px;
}

.step-card, .card{
  border-radius:16px;
  border:1px solid var(--border);
  padding:16px;
  background:#fff;
}

/* AUTH */

.auth-layout{
  max-width:420px;
  margin:40px auto;
}

.auth-card{
  border-radius:18px;
  border:1px solid var(--border);
  background:#fff;
  padding:24px;
  box-shadow:0 15px 35px rgba(15,23,42,.06);
}

.auth-title{
  font-size:1.4rem;
  margin-bottom:4px;
}
.auth-sub{
  font-size:.9rem;
  color:var(--muted);
  margin-bottom:20px;
}

label{
  display:block;
  font-size:.85rem;
  margin-bottom:4px;
}
input, select, textarea{
  width:100%;
  padding:10px;
  border-radius:10px;
  border:1px solid var(--border);
  margin-bottom:14px;
  font:inherit;
}
input:focus, select:focus, textarea:focus{
  outline:none;
  border-color:var(--pink);
  box-shadow:0 0 0 1px rgba(255,92,92,.4);
}

.error{
  color:#b91c1c;
  font-size:.85rem;
  margin-bottom:10px;
}

/* TABLES */

table{
  width:100%;
  border-collapse:collapse;
  font-size:.9rem;
}
th,td{
  padding:8px;
  border-bottom:1px solid var(--border);
}
th{
  text-align:left;
  color:var(--muted);
}

/* FOOTER */

.site-footer{
  border-top:1px solid var(--border);
  background:#fff;
}
.footer-inner{
  padding:14px 0;
  font-size:.85rem;
  color:var(--muted);
  display:flex;
  justify-content:space-between;
  gap:8px;
}

/* RESPONSIVE */

@media(max-width:800px){
  .hero{grid-template-columns:1fr;}
  .hero-title{font-size:2rem;}
  .header-inner{flex-direction:column;align-items:flex-start;gap:8px;}
  .nav a{margin-left:0;margin-right:12px;}
}
