.account-main {
  background: linear-gradient(180deg, var(--off-paper) 0%, var(--paper) 48%);
  min-height: 62vh;
  padding: 64px 24px;
}

.account-shell {
  max-width: 760px;
  margin: 0 auto;
}

.account-kicker {
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.account-shell h1 {
  font-size: clamp(36px, 6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.account-copy {
  color: var(--muted);
  font-size: 18px;
  max-width: 560px;
  margin-bottom: 28px;
}

.account-panel {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 18px 60px rgba(10, 10, 10, 0.06);
}

.account-loading,
.account-note {
  color: var(--muted);
  font-size: 14px;
}

.google-login {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: white;
  border-radius: 6px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 700;
}

.google-login:hover {
  color: white;
  background: var(--brand);
}

.google-mark {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: white;
  color: var(--ink);
  font-weight: 800;
}

.account-note {
  margin-top: 14px;
}

.profile-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 22px;
}

.profile-row img {
  border-radius: 50%;
  background: var(--off-paper);
}

.profile-row h2 {
  font-size: 22px;
  line-height: 1.2;
}

.profile-row p {
  color: var(--muted);
  font-size: 14px;
}

.account-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.account-grid div {
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 16px;
  background: var(--off-paper);
}

.account-grid span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.account-grid strong {
  font-size: 18px;
}

.logout-link {
  display: inline-block;
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 640px) {
  .account-main { padding: 42px 18px; }
  .account-panel { padding: 20px; }
  .account-grid { grid-template-columns: 1fr; }
}
