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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #f8f7f4;
  color: #1a1a1a;
  min-height: 100vh;
}

nav {
  background: #fff;
  border-bottom: 1px solid #e8e6e0;
  padding: 0 24px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand { font-size: 1.1rem; font-weight: 600; }
.nav-right  { display: flex; align-items: center; gap: 12px; font-size: 0.875rem; }

.container { max-width: 720px; margin: 0 auto; padding: 40px 24px; }

.card {
  background: #fff;
  border: 1px solid #e8e6e0;
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 20px;
}

h1 { font-size: 1.75rem; font-weight: 700; margin-bottom: 8px; }
h2 { font-size: 1.15rem; font-weight: 600; margin-bottom: 14px; }
p  { line-height: 1.6; color: #444; }

.muted { color: #888; font-size: 0.875rem; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 8px;
  font-size: 0.9rem; font-weight: 500;
  cursor: pointer; border: none; text-decoration: none;
  transition: background 0.15s;
}
.btn-primary  { background: #2563eb; color: #fff; }
.btn-primary:hover  { background: #1d4ed8; }
.btn-outline  { background: transparent; color: #555; border: 1px solid #ddd; }
.btn-outline:hover  { background: #f3f4f6; }
.btn-google   { background: #fff; color: #444; border: 1px solid #ddd; box-shadow: 0 1px 3px rgba(0,0,0,.08); }
.btn-google:hover   { background: #f8f9fa; }
.btn-danger  { background: #dc2626; color: #fff; }
.btn-danger:hover  { background: #b91c1c; }

label { display: block; font-weight: 500; margin-bottom: 6px; font-size: 0.9rem; }

input[type="text"], select {
  width: 100%; padding: 10px 14px;
  border: 1px solid #ddd; border-radius: 8px;
  font-size: 0.9rem; background: #fff; color: #1a1a1a;
}
input[type="text"]:focus, select:focus { outline: none; border-color: #2563eb; }

.lane-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 0; }

.lane-card {
  border: 2px solid #e8e6e0; border-radius: 10px; padding: 16px;
  cursor: pointer; transition: border-color .15s, background .15s;
}
.lane-card:hover  { border-color: #2563eb; background: #eff6ff; }
.lane-card.selected { border-color: #2563eb; background: #eff6ff; }
.lane-card input[type="radio"] { display: none; }
.lane-card-icon  { font-size: 1.5rem; margin-bottom: 8px; }
.lane-card-title { font-weight: 600; margin-bottom: 4px; }
.lane-card-desc  { font-size: 0.8rem; color: #666; line-height: 1.4; }

.step { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; }
.step-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: #2563eb; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; flex-shrink: 0; margin-top: 2px;
}
.step-title { font-weight: 600; margin-bottom: 4px; }
.step-desc  { font-size: 0.875rem; color: #555; line-height: 1.5; }

.tag {
  display: inline-block; padding: 2px 10px; border-radius: 999px;
  font-size: 0.75rem; font-weight: 600; background: #eff6ff; color: #2563eb;
}

.status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  display: inline-block; margin-right: 6px;
}
.status-dot.green { background: #22c55e; }
